tor-browser

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

testBug593559.js (201B)


      1 var gen = (function* () {yield})();
      2 var t = gen.throw;
      3 try {
      4    new t;
      5 } catch (e) {
      6    actual = e;
      7 }
      8 assertEq(actual.name, "TypeError");
      9 assertEq(/is not a constructor/.test(actual.message), true);