tor-browser

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

bug1134074.js (182B)


      1 setJitCompilerOption("ion.warmup.trigger", 30);
      2 function bar(i) {
      3  if (i >= 40)
      4    return;
      5  if ("aaa,bbb,ccc".split(",")[0].length != 3)
      6    throw "???";
      7  bar(i + 1);
      8 }
      9 bar(0);