Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/realms/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 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 in Prozent
C=94 H=82 G=88

¤ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet am  2026-08-25) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.