@@ -8251,7 +8251,7 @@ an [=async iterator=]. The [=async iterator=] can be asynchronously iterated ove
8251
8251
8252
8252
1. Let |nextResult| be
8253
8253
<a abstract-op>IteratorNext</a>(|iterator|'s [=JS async iterator/underlying record=]).
8254
- 1. If |nextResult| is an abrupt completion, return [=a promise rejected with=]
8254
+ 1. If |nextResult| is an [= abrupt completion=] , return [=a promise rejected with=]
8255
8255
|nextResult|.\[[Value]].
8256
8256
1. Let |nextPromise| be [=a promise resolved with=] |nextResult|.\[[Value]].
8257
8257
1. Return the result of [=reacting=] to |nextPromise| with the following fulfillment
@@ -8273,17 +8273,17 @@ an [=async iterator=]. The [=async iterator=] can be asynchronously iterated ove
8273
8273
8274
8274
To <dfn id="async-iterator-close" export lt="close an async iterator">close</dfn> an
8275
8275
<code><a lt="async iterator">async iterator<<var ignore>T</var>></a></code> |iterator|,
8276
- with a reason |reason|:
8276
+ with an ECMAScript value |reason|:
8277
8277
8278
8278
1. Let |iteratorRecord| be |iterator|'s [=JS async iterator/underlying record=].
8279
8279
1. Let |iteratorObj| be |iteratorRecord|.\[[Iterator]].
8280
8280
1. Let |returnMethod| be <a abstract-op>GetMethod</a>(|iteratorObj|, "<code>return</code>").
8281
- 1. If |returnMethod| is an abrupt completion, return [=a promise rejected with=]
8281
+ 1. If |returnMethod| is an [= abrupt completion=] , return [=a promise rejected with=]
8282
8282
|returnMethod|.\[[Value]].
8283
8283
1. If |returnMethod| is <emu-val>undefined</emu-val>, return [=a promise resolved with=]
8284
8284
{{undefined}}.
8285
8285
1. Let |returnResult| be <a abstract-op>Call</a>(|returnMethod|.\[[Value]], |iteratorObj|, « |reason| »).
8286
- 1. If |returnResult| is an abrupt completion, return [=a promise rejected with=]
8286
+ 1. If |returnResult| is an [= abrupt completion=] , return [=a promise rejected with=]
8287
8287
|returnResult|.\[[Value]].
8288
8288
1. Let |returnPromise| be [=a promise resolved with=] |returnResult|.\[[Value]].
8289
8289
1. Return the result of [=reacting=] to |returnPromise| with the following fulfillment steps,
0 commit comments