summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/uncaughtExceptionHook-resumption-03.js
blob: 85240f5d9eae49c40d2f086b2c1ecdf3d004c574 (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();
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");