tor-browser

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

bug649769.js (180B)


      1 function g(x) {
      2    if (!x) {
      3        throw 1;
      4    }
      5 }
      6 
      7 function f(a, b, c, d) {
      8    var x = [].push(3);
      9    g(true);
     10    assertEq(x, 1);
     11 }
     12 f(1.2, 2, 3, 4);
     13 gc();
     14 f(1, 2, 3, 4);