tor-browser

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

bug1055762.js (165B)


      1 // |jit-test| error: TypeError
      2 function g() {
      3    f(0);
      4 }
      5 function f(y) {
      6    return (undefined <= y);
      7 }
      8 try {
      9    g();
     10 } catch (e) {}
     11 (function() {
     12    f()()
     13 })();