tor-browser

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

bug728187.js (156B)


      1 function f(x) {
      2    if (x.y()) {};
      3 }
      4 f({y: function() {}});
      5 try {
      6    f(10);
      7    assertEq(0, 1);
      8 } catch(e) {
      9    assertEq(e instanceof TypeError, true);
     10 }