Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit b9247f8

Browse files
committed
clarify constraints that have come up
1 parent 1059b1a commit b9247f8

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

DETAILS.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,26 @@
22

33
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.
44

5-
# Getting an iterator record from `this`
5+
## Getting an iterator record from `this`
66

77
The added methods on `%IteratorPrototype%` assume that `this` is an iterator,
88
and therefore use a new `GetIteratorDirect` method to acquire an iterator
99
record. This means that code like `Iterator.syncPrototype.map.call([1, 2, 3], ...)`
1010
will not work.
1111

12-
# Passing the protocol
12+
## Passing the protocol
1313

1414
All added methods attempt to pass the values and calls they receive to whatever
1515
iterator they are wrapping. For example, `it.map(fn).next(5)` will call
1616
`it.next(5)` instead of `it.next()`. Additionally, calls like
1717
`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

Comments
 (0)