From c6a3e71259bc10f0558d0bb2ae0694e99ef774be Mon Sep 17 00:00:00 2001 From: Michael Dyck Date: Wed, 11 Dec 2024 14:24:50 -0500 Subject: [PATCH] fixup: Drop "currently" from "the currently running execution context" (x7) --- spec.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/spec.html b/spec.html index 602e9b94b3..f6d3569fa6 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. @@ -48913,7 +48913,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_. @@ -48946,7 +48946,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_. @@ -49327,7 +49327,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~. @@ -49643,7 +49643,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~. @@ -49665,7 +49665,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: @@ -49673,7 +49673,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_).