Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/ion/   (Browser von der Mozilla Stiftung 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
C=95 H=89 G=91

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

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