You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. If _func_ is an Object, _func_ has a [[SourceText]] internal slot, _func_.[[SourceText]] is a sequence of Unicode code points, and HostHasSourceTextAvailable(_func_) is *true*, then
1. If _func_ is a <emu-xref href="#sec-built-in-function-objects">built-in function object</emu-xref>, return an implementation-defined String source code representation of _func_. The representation must have the syntax of a |NativeFunction|. Additionally, if _func_ has an [[InitialName]] internal slot and _func_.[[InitialName]] is a String, the portion of the returned String that would be matched by |NativeFunctionAccessor?| |PropertyName| must be the value of _func_.[[InitialName]].
31315
+
1. If _func_ is a <emu-xref href="#sec-built-in-function-objects">built-in function object</emu-xref>, return an implementation-defined String source code representation of _func_. The representation must have the syntax of a |NativeFunction|. Additionally, if _func_ has an [[InitialName]] internal slot and _func_.[[InitialName]] is a String, the portion of the returned String that would be matched by |NativeFunctionAccessor?| |PropertyName| must be _func_.[[InitialName]].
31316
31316
1. If _func_ is an Object and IsCallable(_func_) is *true*, return an implementation-defined String source code representation of _func_. The representation must have the syntax of a |NativeFunction|.
31317
31317
1. Throw a *TypeError* exception.
31318
31318
</emu-alg>
@@ -48542,7 +48542,7 @@ <h1>
48542
48542
<dl class="header">
48543
48543
</dl>
48544
48544
<emu-alg>
48545
-
1. Assert: The value of _promise_.[[PromiseState]] is ~pending~.
48545
+
1. Assert: _promise_.[[PromiseState]] is ~pending~.
48546
48546
1. Let _reactions_ be _promise_.[[PromiseFulfillReactions]].
48547
48547
1. Set _promise_.[[PromiseResult]] to _value_.
48548
48548
1. Set _promise_.[[PromiseFulfillReactions]] to *undefined*.
@@ -48611,7 +48611,7 @@ <h1>
48611
48611
<dl class="header">
48612
48612
</dl>
48613
48613
<emu-alg>
48614
-
1. Assert: The value of _promise_.[[PromiseState]] is ~pending~.
48614
+
1. Assert: _promise_.[[PromiseState]] is ~pending~.
48615
48615
1. Let _reactions_ be _promise_.[[PromiseRejectReactions]].
48616
48616
1. Set _promise_.[[PromiseResult]] to _reason_.
48617
48617
1. Set _promise_.[[PromiseFulfillReactions]] to *undefined*.
@@ -49341,7 +49341,7 @@ <h1>
49341
49341
1. Let _fulfillJob_ be NewPromiseReactionJob(_fulfillReaction_, _value_).
0 commit comments