tor-browser

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

doubleArg.js (183B)


      1 function foo(x, y) {
      2  if (y < 0) {}
      3  return x * 1000;
      4 }
      5 function bar(x, y) {
      6  while (false) {}
      7  assertEq(foo(x, false), 10500);
      8  assertEq(foo(y, false), 11000);
      9 }
     10 bar(10.5, 11);