tor-browser

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

bug1817933.js (255B)


      1 var g = newGlobal({"newCompartment": true});
      2 const dbg = new g.Debugger(this);
      3 
      4 with ({x: 3}) {
      5  function foo(n) {
      6    () => {n}
      7 
      8    if (n < 20) {
      9      foo(n+1);
     10    } else {
     11      dbg.getNewestFrame().eval("var x = 23;");
     12    }
     13    +x
     14  }
     15  foo(0);
     16 }