tor-browser

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

bug685321-2.js (208B)


      1 var o = {};
      2 function f() {
      3    function g() {
      4        x = 80;
      5        return x;
      6    };
      7    Object.defineProperty(o, "f", {get:g});
      8    var [x] = [];
      9    x = {};
     10    2 + o.f;
     11    print(x);
     12 }
     13 f();