tor-browser

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

Map-constructor-generator-3.js (164B)


      1 // The argument to Map may be a generator-iterator that produces no values.
      2 
      3 function* none() {
      4    if (0) yield 0;
      5 }
      6 var m = new Map(none());
      7 assertEq(m.size, 0);