tor-browser

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

testApplySpeculationFailInCompiler.js (172B)


      1 function baz(i) { return i }
      2 function bar(x, y) { return baz.apply(null, x ? y : arguments) }
      3 var s;
      4 for (var i = 0; i < 1000; ++i)
      5  s = bar(true, [42]);
      6 assertEq(s, 42);