tor-browser

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

bug649689.js (89B)


      1 function f(x) {
      2    eval("a = 3");
      3    x.p = x.p = a;
      4    assertEq(x.p, 3);
      5 }
      6 f({p: 2});