@@ -149,6 +149,37 @@ <h1>
149
149
1. Return _iteratorRecord_ .
150
150
</emu-alg >
151
151
</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 >
152
183
</emu-clause >
153
184
</emu-clause >
154
185
@@ -560,7 +591,7 @@ <h1>Iterator.prototype.flatMap ( _mapper_ )</h1>
560
591
1. Let _value_ be ? IteratorValue(_next_ ).
561
592
1. Let _mapped_ be Completion(Call(_mapper_ , *undefined* , « ; _value_ » ; )).
562
593
1. IfAbruptCloseIterator(_mapped_ , _iterated_ ).
563
- 1. Let _innerIterator_ be Completion(GetIterator (_mapped_ , ~sync~ )).
594
+ 1. Let _innerIterator_ be Completion(GetIteratorFlattenable (_mapped_ , ~sync~ )).
564
595
1. IfAbruptCloseIterator(_innerIterator_ , _iterated_ ).
565
596
1. Let _innerAlive_ be *true* .
566
597
1. Repeat, while _innerAlive_ is *true* ,
@@ -826,7 +857,7 @@ <h1>AsyncIterator.prototype.flatMap ( _mapper_ )</h1>
826
857
1. IfAbruptCloseAsyncIterator(_mapped_ , _iterated_ ).
827
858
1. Set _mapped_ to Completion(Await(_mapped_ )).
828
859
1. IfAbruptCloseAsyncIterator(_mapped_ , _iterated_ ).
829
- 1. Let _innerIterator_ be Completion(GetIterator (_mapped_ , ~async~ )).
860
+ 1. Let _innerIterator_ be Completion(GetIteratorFlattenable (_mapped_ , ~async~ )).
830
861
1. IfAbruptCloseAsyncIterator(_innerIterator_ , _iterated_ ).
831
862
1. Let _innerAlive_ be *true* .
832
863
1. Repeat, while _innerAlive_ is *true* ,
0 commit comments