summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1130756.js
blob: 24664f7fc3af648dbe732fbd340fdd3b8ca27313 (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
// |jit-test| error: timeout

options('werror');

var g = newGlobal();
g.parent = this;
g.eval("(" + function() {
var dbg = Debugger(parent);
var handler = {hit: function() {}};

dbg.onEnterFrame = function(frame) {
    frame.onStep = function() {}
}
} + ")()");

g = newGlobal();
g.parent = this;
g.eval("Debugger(parent).onExceptionUnwind = function () {};");

function f(x) {
    if (x === 0) {
        return;
    }
    f(x - 1);
    f(x - 1);
}
timeout(0.00001);
f(100);