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

Quelle  fold-in.js

  Sprache: JAVA
 

// Singleton
function f() {
    var res = 0;
    for (var i=0; i<500; i++)
 res += ("abcd" in Math);
    return res;
}
assertEq(f(), 0);
Math.abcd = 3;
assertEq(f(), 500);
delete Math.abcd;
assertEq(f(), 0);

// Non-singleton
function O(x) { if (x) this.x = 1; }

var arr = [];
for (var i=0; i<4; i++)
    arr.push(new O(i % 2));

function g(arr) {
    var res = 0;
    for (var i=0; i<500; i++) {
 var o = arr[i % arr.length];
 res += "x" in o;
 res += "abcd" in o;
    }
    return res;
}
assertEq(g(arr), 250);
arr[0].abcd = 3;
assertEq(g(arr), 375);

function testPrimitive() {
    var x = 7;
    var c = 0;
    for (var i=0; i<5; i++) {
 try {
     "z" in x;
 } catch(e) { c++; }
    }
    assertEq(c, 5);
}
testPrimitive();

Messung V0.5 in Prozent
C=96 H=70 G=83

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-08) ¤

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