tor-browser

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

bug563034.js (197B)


      1 // Binary: cache/js-dbg-64-c9212eb6175b-linux
      2 // Flags:
      3 //
      4 function f(a) {
      5   function* g() {
      6       yield function () { return a; };
      7   }
      8   return g();
      9 }
     10 var x;
     11 assertEq(f(7).next().value(), 7);