tor-browser

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

bug1134146.js (144B)


      1 function Foo(a, b) {
      2    b = {};
      3    this.b = b;
      4 };
      5 var a = [];
      6 for (var i = 0; i < 50; i++)
      7    a.push(new Foo(i, i + 1));
      8 i = 0;
      9 a[i].c = i;