blob: e80ba0f6426115db7d9e06918e55f5b27aeaeefc (
plain)
1
2
3
4
5
6
7
8
9
|
// |jit-test| error: InternalError
enableSPSProfiling();
var g = newGlobal();
g.parent = this;
g.eval("new Debugger(parent).onExceptionUnwind = function () { hits++; };");
function f() {
var x = f();
}
f();
|