summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1768660.js
blob: 2ec07436257c8d0ba43a459c0997ec84575f6946 (plain)
1
2
3
4
5
6
7
8
9
10
a = newGlobal({newCompartment: true});
a.parent = this;
a.eval("Debugger(parent).onExceptionUnwind=function(){}");
(function() {
  try {} finally {
    try {
      throw 9;
    } catch {}
  }
})()