blob: 1c6d65a16327b1674115dc3c43d253e835d41ca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// |jit-test| exitstatus: 6; skip-if: getBuildConfiguration("wasi")
g = newGlobal({newCompartment: true});
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);
|