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

Quelle  object-class-tostring.js   Sprache: JAVA

 
function testCongruent(i) {
  var p = {};
  var o = {
    // Add toString as an own property, so it'll be always found on this object,
    // even when properties are changed on the prototype.
    toString: Object.prototype.toString,

    // Add a custom prototype, so we can add @@toStringTag without modifying the
    // shape of this object.
    __proto__: p,
  };
  var xs = [{}, p];
  var ys = ["[object Object]""[object Test]"];

  for (var j = 0; j <= 100; ++j) {
    // Don't use if-statements to avoid cold code bailouts
    var x = xs[(i === 1 && j === 100)|0];
    var y = ys[(i === 1 && j === 100)|0];

    // |o.toString()| must be executed twice, because |x[Symbol.toStringTag]| may
    // have modified |o|.
    var r = o.toString();
    x[Symbol.toStringTag] = "Test";
    var e = o.toString();

    assertEq(r, "[object Object]");
    assertEq(e, y);
  }
}
for (var i = 0; i < 2; ++i) testCongruent(i);

function testUnobserved(i) {
  var p = {};
  var o = {
    // Add toString as an own property, so it'll be always found on this object,
    // even when properties are changed on the prototype.
    toString: Object.prototype.toString,

    // Add a custom prototype, so we can add @@toStringTag without modifying the
    // shape of this object.
    __proto__: p,
  };
  var xs = [{}, p];
  var ys = [falsetrue];

  for (var j = 0; j <= 100; ++j) {
    // Don't use if-statements to avoid cold code bailouts
    var x = xs[(i === 1 && j === 100)|0];
    var y = ys[(i === 1 && j === 100)|0];

    var executed = false;
    Object.defineProperty(x, Symbol.toStringTag, {
      configurable: true,
      get() {
        executed = true;
      }
    });

    // |o.toString()| must be executed even when the result isn't observed.
    o.toString();

    assertEq(executed, y);
  }
}
for (var i = 0; i < 2; ++i) testUnobserved(i);

Messung V0.5
C=95 H=92 G=93

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