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 1 kB image not shown  

Quelle  bindname.js   Sprache: JAVA

 
// Test the scope chain walk.
function test1() {
    var x = 0;
    function f1(addprop) {
        function f2() {
            eval("");
            function f3() {
                eval("");
                function f4() {
                    for (var i=0; i<100; i++) {
                        x = x + i;
                    }
                }
                return f4;
            }
            return f3();
        }
        var g = f2();
        g();
        if (addprop)
            eval("var a1 = 3; var x = 33;");
        g();
        if (addprop)
            assertEq(x, 4983);
        return f2();
    }

    var g = f1(true);
    g();
    g = f1(false);
    eval("var y = 2020; var z = y + 3;");
    g();
    return x;
}
assertEq(test1(), 19800);

// Test with non-cacheable objects on the scope chain.
function test2(o) {
    var x = 0;
    with ({}) {
        with (o) {
            var f = function() {
                for (var i=0; i<100; i++) {
                    x++;
                }
            };
        }
    }
    f();
    assertEq(o.x, 110);
    assertEq(x, 0);
}
test2({x: 10});

Messung V0.5
C=91 H=93 G=91

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