tor-browser

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

bug1766225.js (234B)


      1 // |jit-test| --ion-offthread-compile=off; --ion-warmup-threshold=1; --ion-gvn=off
      2 
      3 gczeal(4)
      4 function a() {}
      5 function b() {
      6  a(Array.prototype.slice.call(arguments, 1, 3));
      7 }
      8 function c() {
      9  b(1, 2);
     10 }
     11 for (i=0 ; i<200; ++i)
     12  c()