tor-browser

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

bug1871089.js (184B)


      1 // |jit-test| --fast-warmup
      2 var i = 0;
      3 function a() {
      4    if (i++ > 50) {
      5        return;
      6    }
      7    function b() {
      8        new a("abcdefghijklm");
      9    }
     10    [new b];
     11 }
     12 gczeal(4);
     13 a();