comparison: js/src/jit-test/tests/debug/bug-858170.js
js/src/jit-test/tests/debug/bug-858170.js
- branch
- TOR_BUG_9701
- changeset 10
- ac0c01689b40
equal
deleted
inserted
replaced
|
1 var g = newGlobal(); |
|
2 var dbg = Debugger(g); |
|
3 dbg.onNewScript = function (s) { |
|
4 throw new Error(); |
|
5 }; |
|
6 dbg.uncaughtExceptionHook = function () {} |
|
7 g.eval("2 * 3"); |