[Bug 26183] make it easier to define an iterator on an interface that iterates over a set of values

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

--- Comment #20 from Anne <annevk@annevk.nl> ---
1) We want "iterator;". HTMLCollection is something where we cannot expose
additional methods, but we want to expose Symbol.iterator.

2) I think we want a way to return an iterator similar to "iterator;", but for
normal methods rather than Symbol.iterator. This would allow "polyfilling" at
the standards level. E.g. with that I could define keys() and friends myself.

3) I would expect all iterable objects to have forEach(), not just maplikes.
Iterating over the same values as Symbol.iterator. (In ECMAScript Array,
%TypedArray%, Map, and Set have it.) Given HTMLCollection and similar legacy
APIs, getting forEach() needs to be opt-in somehow.

4) I would expect iterable<ScalarValueString, FormDataEntryValue> (no sequenced
value) as a multimap is a list with non-unique keys. (This incidentally makes
it match get() a bit better I suppose. getAll() is for the "weirder" multimap
view.)

5) iterable<> should probably imply Symbol.iterator and forEach().

6) FormData seems hard to autogenerate the API for due to the filename
argument. I noticed Headers currently does argument checks even for get() and
has() (should maybe drop that). The way FormData, URLSearchParams, and Headers
work is consistent, but I should probably try to abstract them a bit more
myself first before we try to move logic into IDL for them (if that is even
worth the tax on IDL, there might not be that many multimaps in the end).

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Thursday, 2 October 2014 07:22:38 UTC