tor-browser

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

bug510437-2.js (178B)


      1 function f() {
      2  eval("g=function() { \
      3          for (let x=0; x < 2; ++x) { \
      4            d=x \
      5          } \
      6        }")
      7  g();
      8  eval("var d")
      9  g();
     10 }
     11 
     12 f();
     13 assertEq(d, 1);