comparison: js/src/jit-test/tests/debug/bug-858170.js
js/src/jit-test/tests/debug/bug-858170.js
- changeset 0
- 6474c204b198
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"); |