tor-browser

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

bug662082.js (111B)


      1 function foo(z)
      2 {
      3  var x = 2;
      4  if (z) {
      5    x = 2.5;
      6  }
      7  var y = x * 10;
      8  assertEq(y, 20);
      9 }
     10 foo(false);