tor-browser

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

bug1073702.js (147B)


      1 try {
      2  let x = ((function f(y) {
      3    if (y > 0) {
      4      f(-1)
      5    }
      6    x
      7  })(1))
      8 } catch (e) {
      9  assertEq(e instanceof ReferenceError, true);
     10 }