tor-browser

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

concurrent-stencil-map-enclosed-indexes.js (191B)


      1 // |jit-test| --delazification-mode=concurrent-df
      2 
      3 var d = 1;
      4 function heavy(x, y) {
      5    eval(x);
      6    return function lite() {
      7        assertEq(d, y);
      8    };
      9 }
     10 
     11 heavy("var d = 100;", 100)();