blob: dfc3d8d367fe9f823a26841c453c3978192468b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| allow-oom; allow-unhandlable-oom; allow-overrecursed; skip-if: getBuildConfiguration("android")
// Disabled on Android due to harness problems (Bug 1532654)
g = newGlobal({newCompartment: true})
g.parent = this
g.eval("Debugger(parent).onExceptionUnwind=(function(){})")
gcparam("maxBytes", gcparam("gcBytes"))
function f() {
f()
y(arguments)
}
f()
|