summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug651966.js
blob: 35e0c1049bdeb4c35e6dc8526e24c7f6db8e397f (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
function f(code) {
    g = eval("(function(){" + code + "})");
    g()
}
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
f();
try { f("function x(){}(x())"); } catch (e) {}

function f2() {
    a = {
        x
    } = x, (x._)
    function
    x(){ return ({}); }
}
try { f2(); } catch (e) {}

function f3() {
  var x = 0;
  with ({}) { x = 'three'; }
  return x;
}
f3();