diff --git a/spec.html b/spec.html index 45840a782b..730f9daa88 100644 --- a/spec.html +++ b/spec.html @@ -12063,7 +12063,7 @@

GetNewTarget ( ): an Object or *undefined*

GetGlobalObject ( ): an Object

description
-
It returns the global object used by the currently running execution context.
+
It returns the global object used by the running execution context.
1. Let _currentRealm_ be the current Realm Record. @@ -48914,7 +48914,7 @@

1. Transfer control from _methodContext_ to _genContext_, passing NormalCompletion(_value_). 1. NOTE: This step is reached only when control is transferred back to _methodContext_, which might not happen. 1. Let _result_ be the Completion Record passed when control was transferred back to _methodContext_. - 1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the currently running execution context. + 1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the running execution context. 1. Return ? _result_. @@ -48947,7 +48947,7 @@

1. Transfer control from _methodContext_ to _genContext_, passing _abruptCompletion_. 1. NOTE: This step is reached only when control is transferred back to _methodContext_, which might not happen. 1. Let _result_ be the Completion Record passed when control was transferred back to _methodContext_. - 1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the currently running execution context. + 1. Assert: _genContext_ has already been removed from the execution context stack and _methodContext_ is the running execution context. 1. Return ? _result_. @@ -49328,7 +49328,7 @@

1. NOTE: This step is reached only when control is transferred back to _callerContext_, which might not happen. 1. Let _result_ be the Completion Record passed when control was transferred back to _callerContext_. 1. Assert: _result_ is never an abrupt completion. - 1. Assert: _genContext_ has already been removed from the execution context stack and _callerContext_ is the currently running execution context. + 1. Assert: _genContext_ has already been removed from the execution context stack and _callerContext_ is the running execution context. 1. Return ~unused~. @@ -49644,7 +49644,7 @@

1. Transfer control from _runningContext_ to _asyncContext_, passing NormalCompletion(~unused~). 1. NOTE: This step is reached only when control is transferred back to _runningContext_, which might not happen. 1. Let _result_ be the Completion Record passed when control was transferred back to _runningContext_. - 1. Assert: _asyncContext_ has already been removed from the execution context stack and _runningContext_ is the currently running execution context. + 1. Assert: _asyncContext_ has already been removed from the execution context stack and _runningContext_ is the running execution context. 1. Assert: _result_ is a normal completion with a value of ~unused~. The possible sources of this value are Await or, if the async function doesn't await anything, step above. 1. Return ~unused~. @@ -49666,7 +49666,7 @@

1. Push _asyncContext_ onto the execution context stack; _asyncContext_ is now the running execution context. 1. Transfer control from _prevContext_ to _asyncContext_, passing NormalCompletion(_v_). 1. NOTE: This step is reached only when control is transferred back to _prevContext_, which might not happen. - 1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the currently running execution context. + 1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the running execution context. 1. Return *undefined*. 1. Let _onFulfilled_ be CreateBuiltinFunction(_fulfilledClosure_, 1, *""*, « »). 1. Let _rejectedClosure_ be a new Abstract Closure with parameters (_reason_) that captures _asyncContext_ and performs the following steps when called: @@ -49674,7 +49674,7 @@

1. Push _asyncContext_ onto the execution context stack; _asyncContext_ is now the running execution context. 1. Transfer control from _prevContext_ to _asyncContext_, passing ThrowCompletion(_reason_). 1. NOTE: This step is reached only when control is transferred back to _prevContext_, which might not happen. - 1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the currently running execution context. + 1. Assert: _asyncContext_ has already been removed from the execution context stack and _prevContext_ is the running execution context. 1. Return *undefined*. 1. Let _onRejected_ be CreateBuiltinFunction(_rejectedClosure_, 1, *""*, « »). 1. Perform PerformPromiseThen(_promise_, _onFulfilled_, _onRejected_).