tor-browser

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

bug931414.js (231B)


      1 // |jit-test| error: TypeError
      2 
      3 load(libdir + "iteration.js");
      4 
      5 function iterable() {
      6  var iterable = {};
      7  iterable[Symbol.iterator] = () => ({next: () => void 0});
      8  return iterable;
      9 }
     10 
     11 (function*(){yield*iterable()}()).next();