blob: 87eb3da948887fabf1b6d02dce13b9a421f35ebe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// |jit-test| allow-oom; allow-overrecursed
g = newGlobal()
g.parent = this
g.eval("Debugger(parent).onExceptionUnwind=(function(){})")
gcparam("maxBytes", gcparam("gcBytes"))
function f() {
f()
y(arguments)
}
f()
|