Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/realms/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 894 B image not shown  

Quelle  ccw-errors.js   Sprache: JAVA

 
function test() {
  "use strict";

  const g = newGlobal({newCompartment: true});
  Error.prototype.whence = "main global";
  g.eval("Error.prototype.whence = 'other global'");

  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() { throw new 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
C=94 H=87 G=90

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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.