const obj = g.eval("[]");
Object.freeze(obj); try {
obj.foo = 7;
assertEq("reached", "no", "This line should not be reached; the previous line should have thrown");
} catch(e) {
assertEq("" + e, `TypeError: can't define property "foo": Array is not extensible`);
assertEq(e.whence, "main global"); // setting operation happens in this global
}
const obj2 = g.eval(`obj2 = { get x() { thrownew Error("go away"); } };`); try {
obj2.x;
assertEq("reached", "no", "This line should not be reached; the previous line should have thrown");
} catch(e) {
assertEq("" + e, `Error: go away`);
assertEq(e.whence, "other global"); // Error created in other global
}
}
test();
Messung V0.5
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet)
¤
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 und die Messung sind noch experimentell.