summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1107525.js
blob: 35a5eb466f8b350c58025a38b7e4d74ff6eba518 (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| error: InternalError
enableGeckoProfiling();
var g = newGlobal({newCompartment: true});
g.parent = this;
g.eval("new Debugger(parent).onExceptionUnwind = function () { hits++; };");
function f() {
    var x = f();
}
f();