From 94bf7d52348011fa4d7ce83ebc0e98a7f2129817 Mon Sep 17 00:00:00 2001 From: Kevin Gibbons Date: Wed, 31 Jan 2024 15:20:29 -0800 Subject: [PATCH] Editorial: tweak unwrapping of some normal completions (#3273) --- spec.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec.html b/spec.html index 10fd3f8698..1acba1d27d 100644 --- a/spec.html +++ b/spec.html @@ -7061,7 +7061,7 @@

IfAbruptCloseIterator ( _value_, _iteratorRecord_ )

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_. @@ -24974,7 +24974,7 @@

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_. @@ -46189,7 +46189,7 @@

IfAbruptRejectPromise ( _value_, _capability_ )

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_.