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

Commit 032ea9d

Browse files
fixes #229: flatMap supports returning both iterables and iterators
1 parent f29d0cd commit 032ea9d

File tree

1 file changed

+33
-2
lines changed

1 file changed

+33
-2
lines changed

spec.html

+33-2
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,37 @@ <h1>
149149
1. Return _iteratorRecord_.
150150
</emu-alg>
151151
</emu-clause>
152+
153+
<emu-clause id="sec-getiteratorflattenable" type="abstract operation">
154+
<h1>
155+
GetIteratorFlattenable (
156+
_obj_: an ECMAScript language value,
157+
optional _hint_: ~sync~ or ~async~,
158+
): either a normal completion containing an Iterator Record or a throw completion
159+
</h1>
160+
<dl class="header">
161+
</dl>
162+
<emu-alg>
163+
1. If _hint_ is not present, set _hint_ to ~sync~.
164+
1. If _iterator_ is either *undefined* or *null*, throw a *TypeError* exception.
165+
1. Let _method_ be *undefined*.
166+
1. If _hint_ is ~async~, then
167+
1. Set _method_ to ? GetV(_obj_, @@asyncIterator).
168+
1. If IsCallable(_method_) is *false*, then
169+
1. Set _method_ to ? GetV(_obj_, @@iterator).
170+
1. If IsCallable(_method_) is *false*, then
171+
1. Let _iterator_ be _obj_.
172+
1. Else,
173+
1. Let _iterator_ be ? Call(_method_, _obj_).
174+
1. If _iterator_ is not an Object, throw a *TypeError* exception.
175+
1. Let _nextMethod_ be ? Get(_iterator_, *"next"*).
176+
1. If IsCallable(_nextMethod_) is *false*, throw a *TypeError* exception.
177+
1. Let _iteratorRecord_ be the Iterator Record { [[Iterator]]: _iterator_, [[NextMethod]]: _nextMethod_, [[Done]]: *false* }.
178+
1. If _hint_ is ~async~, then
179+
1. Return CreateAsyncFromSyncIterator(_iteratorRecord_).
180+
1. Return _iteratorRecord_.
181+
</emu-alg>
182+
</emu-clause>
152183
</emu-clause>
153184
</emu-clause>
154185

@@ -560,7 +591,7 @@ <h1>Iterator.prototype.flatMap ( _mapper_ )</h1>
560591
1. Let _value_ be ? IteratorValue(_next_).
561592
1. Let _mapped_ be Completion(Call(_mapper_, *undefined*, &laquo; _value_ &raquo;)).
562593
1. IfAbruptCloseIterator(_mapped_, _iterated_).
563-
1. Let _innerIterator_ be Completion(GetIterator(_mapped_, ~sync~)).
594+
1. Let _innerIterator_ be Completion(GetIteratorFlattenable(_mapped_, ~sync~)).
564595
1. IfAbruptCloseIterator(_innerIterator_, _iterated_).
565596
1. Let _innerAlive_ be *true*.
566597
1. Repeat, while _innerAlive_ is *true*,
@@ -826,7 +857,7 @@ <h1>AsyncIterator.prototype.flatMap ( _mapper_ )</h1>
826857
1. IfAbruptCloseAsyncIterator(_mapped_, _iterated_).
827858
1. Set _mapped_ to Completion(Await(_mapped_)).
828859
1. IfAbruptCloseAsyncIterator(_mapped_, _iterated_).
829-
1. Let _innerIterator_ be Completion(GetIterator(_mapped_, ~async~)).
860+
1. Let _innerIterator_ be Completion(GetIteratorFlattenable(_mapped_, ~async~)).
830861
1. IfAbruptCloseAsyncIterator(_innerIterator_, _iterated_).
831862
1. Let _innerAlive_ be *true*.
832863
1. Repeat, while _innerAlive_ is *true*,

0 commit comments

Comments
 (0)