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

Quelle  eval-json-differences.js   Sprache: JAVA

 
load(libdir + "asserts.js");

// eval({__proto__}) changes [[Prototype]]
var obj = eval('({"__proto__": null})');
assertEq(Object.getPrototypeOf(obj), null);
assertEq(Object.prototype.hasOwnProperty.call(obj, "__proto__"), false);

// JSON.parse({__proto__}) creates new property __proto__
obj = JSON.parse('{"__proto__": null}');
assertEq(Object.getPrototypeOf(obj), Object.prototype);
assertEq(Object.prototype.hasOwnProperty.call(obj, "__proto__"), true);

// If __proto__ appears more than once as quoted or unquoted property name in an
// object initializer expression, that's an error.
//(No other property name has this restriction.)"
assertThrowsInstanceOf(() =>
    eval('({ "__proto__" : null, "__proto__" : null })'), SyntaxError);

assertThrowsInstanceOf(() =>
    eval(' ({ "__proto__" : null, "__proto__" : null })'), SyntaxError);

// JSON.parse doesn't care about duplication, the last definition counts.
obj = JSON.parse('{"__proto__": null, "__proto__": 5}');
assertEq(Object.getPrototypeOf(obj), Object.prototype);
assertEq(obj["__proto__"], 5);

Messung V0.5
C=76 H=100 G=88

¤ Dauer der Verarbeitung: 0.0 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.