summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/bug1323854-2.js
blob: ca6ac4e7a573db3c98c27afb1149eabf096f22b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// |jit-test| --ion-gvn=off;

try  {
    var g = newGlobal();
    var dbg = new Debugger(g);
    dbg.onExceptionUnwind = function(m) {
        do {
            m = m.older;
        } while (m != null);
    };
    g.eval("try { throw (function() {});} finally {}");
} catch(e) {

}