summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug673812.js
blob: cf16ba78b5002e9ff807db918567b99b1ea9f6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
gczeal(2);
try {
    DoWhile_3();
} catch (e) {}
function f() {
    test();
    yield 170;
}
function test() {
    function foopy() {
        try {
            for (var i in f());
        } catch (e) {}
    }
    foopy();
    gc();
}
test();