summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/uncaughtExceptionHook-resumption-03.js
blob: 7835271e3ce942183f6603d4e303cdd04e360cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// After an onExceptionUnwind hook throws, if uncaughtExceptionHook returns
// undefined, the original exception continues to propagate.

var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
var log = '';
dbg.onExceptionUnwind = function () { log += "1"; throw new Error("oops"); };
dbg.uncaughtExceptionHook = function () { log += "2"; };

g.eval("var x = new Error('oops');");
g.eval("try { throw x; } catch (exc) { assertEq(exc, x); }");
assertEq(log, "12");