summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1461319.js
blob: 46f9ad50cdbbcf882e2d37fe96a8807337e48e61 (plain)
1
2
3
4
5
6
7
// |jit-test| error: InternalError
gczeal(14);
var g = newGlobal({newCompartment: true});
g.eval('function f(a) { evaluate("f(" + " - 1);", {newContext: true}); }');
var dbg = new Debugger(g);
dbg.onEnterFrame = function(frame) {};
g.f();