tor-browser

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

bug842429.js (125B)


      1 function* gen() {
      2    try {
      3 yield 3;
      4    } finally {
      5 quit();
      6    }
      7 }
      8 try {
      9    for (var i of gen())
     10 foo();
     11 } catch (e) {}