/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* * NB: uncaught exceptions, when reported, have nothing on the stack so * both the filename and mutedErrors are empty. E.g., this would fail: * * CHECK(testError("throw 3"));
*/ returntrue;
}
bool eval(constchar* asciiChars, bool mutedErrors,
JS::MutableHandleValue rval) {
size_t len = strlen(asciiChars);
mozilla::UniquePtr<char16_t[]> chars(new char16_t[len + 1]); for (size_t i = 0; i < len; ++i) {
chars[i] = asciiChars[i];
}
chars[len] = 0;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.