tor-browser

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

bug980585.js (225B)


      1 var g = newGlobal({newCompartment: true});
      2 var dbg = new Debugger(g);
      3 
      4 try {
      5  g.eval("function f() { [1].map(function () {}); const x = 42; x = 43; } f();");
      6 } catch (e) {
      7  // Ignore the syntax error.
      8 }
      9 
     10 dbg.findScripts();