summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bindname.js
blob: be5eca2d03fd4bbe6d21db7f072c633d849aa054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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});