tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug1323854-2.js (281B)


      1 // |jit-test| --ion-gvn=off;
      2 
      3 try  {
      4    var g = newGlobal();
      5    var dbg = new Debugger(g);
      6    dbg.onExceptionUnwind = function(m) {
      7        do {
      8            m = m.older;
      9        } while (m != null);
     10    };
     11    g.eval("try { throw (function() {});} finally {}");
     12 } catch(e) {
     13 
     14 }