[Bug 26973] make iterable declarations' iterator prototype objects inherit from %IteratorPrototype%

https://www.w3.org/Bugs/Public/show_bug.cgi?id=26973

--- Comment #4 from Cameron McCormack <cam@mcc.id.au> ---
This would mean that you would write things like:

  myMap.keys().filter((x) => x > 10)

yeah?  To make it a little easier to type than:

  [...myMap.keys()].filter((x) => x > 10)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Received on Sunday, 5 October 2014 05:16:56 UTC