Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/basic/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  error-stack-accessors.js

  Sprache: JAVA
 

// Test the Error.prototype.stack getter/setter with various "fun" edge cases.

load(libdir + "asserts.js");

// Stack should be accessible in subclasses. The accessor should walk up the
// prototype chain.
assertEq(typeof Object.create(Error()).stack, "string");
assertEq(Object.create(Error.prototype).stack, "");

// Stack should be overridable in subclasses.
{
  let myError = Object.create(Error());
  myError.stack = 5;
  assertEq(myError.stack, 5);

  let myOtherError = Object.create(Error.prototype);
  myOtherError.stack = 2;
  assertEq(myOtherError.stack, 2);
}

// Should throw when there is no Error in the `this` object's prototype chain.
var obj = Object.create(null);
var desc = Object.getOwnPropertyDescriptor(Error.prototype, "stack");
Object.defineProperty(obj, "stack", desc);
assertThrowsInstanceOf(() => obj.stack, TypeError);

// Should throw with non-object `this` values.
assertThrowsInstanceOf(desc.set,                TypeError);
assertThrowsInstanceOf(desc.set.bind("string"), TypeError);
assertThrowsInstanceOf(desc.get,                TypeError);
assertThrowsInstanceOf(desc.get.bind("string"), TypeError);

Messung V0.5 in Prozent
C=95 H=78 G=86

¤ Dauer der Verarbeitung: 0.9 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© 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.