tor-browser

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

bug-870034.js (233B)


      1 // |jit-test| --ion-eager
      2 function f(b) {
      3    var a = arguments;
      4    if (b)
      5        f(false);
      6    else
      7        g = {
      8            apply:function(x,y) { "use asm"; function g() {} return g }
      9        };
     10    g.apply(null, a);
     11 }
     12 f(true);