Skip to content

Commit 7c6e257

Browse files
authored
Fix uses of IfAbruptRejectPromise
This was not done correctly in f8f5650.
1 parent 69c0e4d commit 7c6e257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12568,7 +12568,7 @@ The \[[Prototype]] [=internal slot=] of an [=asynchronous iterator prototype obj
1256812568
1. Let |thisValidationPromiseCapability| be [=!=] [$NewPromiseCapability$]({{%Promise%}}).
1256912569

1257012570
1. Let |thisValue| be the <emu-val>this</emu-val> value.
12571-
1. Let |object| be [=?=] <a abstract-op>ToObject</a>(|thisValue|).
12571+
1. Let |object| be <a abstract-op>Completion</a>(<a abstract-op>ToObject</a>(|thisValue|)).
1257212572

1257312573
1. [$IfAbruptRejectPromise$](|object|, |thisValidationPromiseCapability|).
1257412574

@@ -12658,7 +12658,7 @@ The \[[Prototype]] [=internal slot=] of an [=asynchronous iterator prototype obj
1265812658
1. Let |returnPromiseCapability| be [=!=] [$NewPromiseCapability$]({{%Promise%}}).
1265912659

1266012660
1. Let |thisValue| be the <emu-val>this</emu-val> value.
12661-
1. Let |object| be [=?=] <a abstract-op>ToObject</a>(|thisValue|).
12661+
1. Let |object| be <a abstract-op>Completion</a>(<a abstract-op>ToObject</a>(|thisValue|)).
1266212662

1266312663
1. [$IfAbruptRejectPromise$](|object|, |returnPromiseCapability|).
1266412664

0 commit comments

Comments
 (0)