tor-browser

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

testShiftSameBacking.js (164B)


      1 // vim: set ts=8 sts=4 et sw=4 tw=99:
      2 
      3 function f(a) {
      4    var x = a;
      5    var y = x;
      6 
      7    assertEq((x << y), (a << a));
      8    assertEq((y << x), (a << a));
      9 }
     10 
     11 f(2);