tor-browser

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

globalOptimize-2.js (143B)


      1 x = 30;
      2 function foo() {
      3  assertEq(x, 30);
      4  delete x;
      5  y = 20;
      6  Object.defineProperty(this, 'x', {value:10});
      7  assertEq(x, 10);
      8 }
      9 foo();