tor-browser

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

bug1654947.js (251B)


      1 function f() {
      2    let g = x => (x >>> {} >>> x, x);
      3    let arr = [0, 0xffff, undefined];
      4    for (let i = 0; i < 10; i++) {
      5        for (let j = 0; j < 3; j++) {
      6            let y = g(arr[j]);
      7            assertEq(y, arr[j]);
      8        }
      9    }
     10 }
     11 f();