tor-browser

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

testBug550210.js (201B)


      1 function g(e) {
      2    return ("" + e);
      3 }
      4 
      5 function* blah() {
      6    do {
      7        yield;
      8    } while ({}(p = arguments));
      9 }
     10 rv = blah();
     11 try {
     12    for (a of rv) ;
     13 } catch (e) {
     14    print("" + g(e));
     15 }
     16 gc();