summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/closures/setname-inner-heavy.js
blob: cf66c61d39945d6b141b920c9f2a4ea7889f6d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
actual = '';
expected = 'undefined,';

function f() { 
    (eval("\
        (function () {\
            for (var z = 0; z < 2; ++z) {\
                x = ''\
            }\
        })\
    "))();
}
this.__defineSetter__("x", eval)
f()
appendToActual(x);


assertEq(actual, expected)