summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug741241.js
blob: 5c26c41c52958e26c2c3c37080fc417d960267e9 (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
function f1() {};
new f1();

function f2() {
    try{} catch (x) {}
};
new f2();

function f3() {
    for (var j = 0; j < 100; j++) {}
};
new f3();

function notEager1(){
    function g1() {};
    new g1();
}
for (var i = 0; i < 100; i++)
    notEager1();

function notEager2(){
    function g2() {};
    new g2();
}
for (var i = 0; i < 100; i++)
    notEager2();

function notEager3(){
    function g3() {
        for (var j = 0; j < 100; j++) {}
    };
    new g3();
}
for (var i = 0; i < 100; i++)
    notEager3();