Closed
Bug 1647794
Opened 4 years ago
Closed 4 years ago
Add lazy Iterator helper methods
Categories
(Core :: JavaScript Engine, enhancement, P3)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla80
Tracking | Status | |
---|---|---|
firefox80 | --- | fixed |
People
(Reporter: e7358d9c, Assigned: avandolder)
References
(Blocks 1 open bug, )
Details
Attachments
(1 file)
The Iterator Helpers proposal defines 6 lazy methods that need to be implemented on %Iterator.prototype%
:
Updated•4 years ago
|
Severity: -- → N/A
Priority: -- → P3
Assignee | ||
Updated•4 years ago
|
Assignee: nobody → avandolder
Assignee | ||
Updated•4 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•4 years ago
|
||
The Iterator Helpers proposal defines 6 lazy synchronous iterator methods,
map
, filter
, take
, drop
, asIndexedPairs
, and flatMap
.
All of these methods are to return the newly defined builtin generators,
which we implement as self-hosted generators that are stored in an
internal slot and thus observably distinct from regular generators.
Assignee | ||
Comment 2•4 years ago
|
||
Pushed by avandolder@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/cfad3fec4c86
Add lazy Iterator Helper methods. r=jorendorff
Comment 4•4 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 4 years ago
status-firefox80:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla80
You need to log in
before you can comment on or make changes to this bug.
Description
•