You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2024. It is now read-only.
Copy file name to clipboardexpand all lines: DETAILS.md
+12-2
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,26 @@
2
2
3
3
There are number of decisions which could be made differently. This document attempts to catalog them along with the rationales for the choices currently made.
4
4
5
-
# Getting an iterator record from `this`
5
+
##Getting an iterator record from `this`
6
6
7
7
The added methods on `%IteratorPrototype%` assume that `this` is an iterator,
8
8
and therefore use a new `GetIteratorDirect` method to acquire an iterator
9
9
record. This means that code like `Iterator.syncPrototype.map.call([1, 2, 3], ...)`
10
10
will not work.
11
11
12
-
# Passing the protocol
12
+
##Passing the protocol
13
13
14
14
All added methods attempt to pass the values and calls they receive to whatever
15
15
iterator they are wrapping. For example, `it.map(fn).next(5)` will call
16
16
`it.next(5)` instead of `it.next()`. Additionally, calls like
17
17
`it.map(fn).return()` will call upwards as well, to `it.return()`.
18
+
19
+
## Interface constraints
20
+
21
+
- The interface used to expose these methods must not clash with existing APIs.
22
+
For example: `Array.prototype.map` or `Map.prototype.forEach` denying access
23
+
to the interface.
24
+
- It must work with everywhere an iteration can occur.
25
+
For example: `%GeneratorFunction%.prototype.map` will not work because the
26
+
interface has to be obtained from an explicit function call.
27
+
`%GeneratorFunction%.prototype` has no symbolic API to get the iterator.
0 commit comments