Skip to content

Commit b324a0d

Browse files
tontonialbertoljharb
authored andcommitted
Editorial: Remove unnecessary "the value of" when referencing properties (#3643)
1 parent 7f97b40 commit b324a0d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

spec.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6995,10 +6995,10 @@ <h1>
69956995
<dl class="header">
69966996
</dl>
69976997
<emu-alg>
6998-
1. Let _methods_ be the value of _constructor_.[[PrivateMethods]].
6998+
1. Let _methods_ be _constructor_.[[PrivateMethods]].
69996999
1. For each PrivateElement _method_ of _methods_, do
70007000
1. Perform ? PrivateMethodOrAccessorAdd(_O_, _method_).
7001-
1. Let _fields_ be the value of _constructor_.[[Fields]].
7001+
1. Let _fields_ be _constructor_.[[Fields]].
70027002
1. For each element _fieldRecord_ of _fields_, do
70037003
1. Perform ? DefineField(_O_, _fieldRecord_).
70047004
1. Return ~unused~.
@@ -31312,7 +31312,7 @@ <h1>Function.prototype.toString ( )</h1>
3131231312
1. Let _func_ be the *this* value.
3131331313
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
3131431314
1. Return CodePointsToString(_func_.[[SourceText]]).
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 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]].
3131631316
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|.
3131731317
1. Throw a *TypeError* exception.
3131831318
</emu-alg>
@@ -48542,7 +48542,7 @@ <h1>
4854248542
<dl class="header">
4854348543
</dl>
4854448544
<emu-alg>
48545-
1. Assert: The value of _promise_.[[PromiseState]] is ~pending~.
48545+
1. Assert: _promise_.[[PromiseState]] is ~pending~.
4854648546
1. Let _reactions_ be _promise_.[[PromiseFulfillReactions]].
4854748547
1. Set _promise_.[[PromiseResult]] to _value_.
4854848548
1. Set _promise_.[[PromiseFulfillReactions]] to *undefined*.
@@ -48611,7 +48611,7 @@ <h1>
4861148611
<dl class="header">
4861248612
</dl>
4861348613
<emu-alg>
48614-
1. Assert: The value of _promise_.[[PromiseState]] is ~pending~.
48614+
1. Assert: _promise_.[[PromiseState]] is ~pending~.
4861548615
1. Let _reactions_ be _promise_.[[PromiseRejectReactions]].
4861648616
1. Set _promise_.[[PromiseResult]] to _reason_.
4861748617
1. Set _promise_.[[PromiseFulfillReactions]] to *undefined*.
@@ -49341,7 +49341,7 @@ <h1>
4934149341
1. Let _fulfillJob_ be NewPromiseReactionJob(_fulfillReaction_, _value_).
4934249342
1. Perform HostEnqueuePromiseJob(_fulfillJob_.[[Job]], _fulfillJob_.[[Realm]]).
4934349343
1. Else,
49344-
1. Assert: The value of _promise_.[[PromiseState]] is ~rejected~.
49344+
1. Assert: _promise_.[[PromiseState]] is ~rejected~.
4934549345
1. Let _reason_ be _promise_.[[PromiseResult]].
4934649346
1. If _promise_.[[PromiseIsHandled]] is *false*, perform HostPromiseRejectionTracker(_promise_, *"handle"*).
4934749347
1. Let _rejectJob_ be NewPromiseReactionJob(_rejectReaction_, _reason_).
@@ -49772,7 +49772,7 @@ <h1>
4977249772
<dl class="header">
4977349773
</dl>
4977449774
<emu-alg>
49775-
1. Assert: The value of _generator_.[[GeneratorState]] is ~suspended-start~.
49775+
1. Assert: _generator_.[[GeneratorState]] is ~suspended-start~.
4977649776
1. Let _genContext_ be the running execution context.
4977749777
1. Set the Generator component of _genContext_ to _generator_.
4977849778
1. Let _closure_ be a new Abstract Closure with no parameters that captures _generatorBody_ and performs the following steps when called:

0 commit comments

Comments
 (0)