Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: tweak unwrapping of some normal completions #3273

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -7061,7 +7061,7 @@ <h1>IfAbruptCloseIterator ( _value_, _iteratorRecord_ )</h1>
<emu-alg>
1. Assert: _value_ is a Completion Record.
1. If _value_ is an abrupt completion, return ? IteratorClose(_iteratorRecord_, _value_).
1. Else, set _value_ to _value_.[[Value]].
1. Else, set _value_ to ! _value_.
</emu-alg>
</emu-clause>

Expand Down Expand Up @@ -24974,7 +24974,7 @@ <h1>
1. Set the running execution context's LexicalEnvironment to _env_.
1. Set the running execution context's PrivateEnvironment to _outerPrivateEnvironment_.
1. Return ? _element_.
1. Set _element_ to _element_.[[Value]].
1. Set _element_ to ! _element_.
1. If _element_ is a PrivateElement, then
1. Assert: _element_.[[Kind]] is either ~method~ or ~accessor~.
1. If IsStatic of _e_ is *false*, let _container_ be _instancePrivateMethods_.
Expand Down Expand Up @@ -46189,7 +46189,7 @@ <h1>IfAbruptRejectPromise ( _value_, _capability_ )</h1>
1. Perform ? Call(_capability_.[[Reject]], *undefined*, « _value_.[[Value]] »).
1. Return _capability_.[[Promise]].
1. Else,
1. Set _value_ to _value_.[[Value]].
1. Set _value_ to ! _value_.
</emu-alg>
</emu-clause>
</emu-clause>
Expand Down
Loading