Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 330a793

Browse files
authored
Update abstract op so early return is obvious (#22)
* Update abstract op so early return is obvious * fixup: [spec] `npm run build`
1 parent 0671d57 commit 330a793

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2309,7 +2309,7 @@ <h1><span class="secnum">2.3</span>
23092309
<var>value</var>: an ECMAScript language value,
23102310
)
23112311
</h1>
2312-
<emu-alg><ol><li>Let <var>group</var> be <emu-const>empty</emu-const>.</li><li>For each <emu-xref href="#sec-list-and-record-specification-type"><a href="https://tc39.es/ecma262/#sec-list-and-record-specification-type">Record</a></emu-xref> { [[Key]], [[Elements]] } <var>g</var> of <var>groups</var>, do<ol><li>If !&nbsp;<emu-xref aoid="SameValueZero" id="_ref_17"><a href="https://tc39.es/ecma262/#sec-samevaluezero">SameValueZero</a></emu-xref>(<var>g</var>.[[Key]], <var>key</var>) is <emu-val>true</emu-val>, then<ol><li>Set <var>group</var> to <var>g</var>.</li></ol></li></ol></li><li>If <var>group</var> is <emu-const>empty</emu-const>, then<ol><li>Let <var>elements</var> be a new empty <emu-xref href="#sec-list-and-record-specification-type"><a href="https://tc39.es/ecma262/#sec-list-and-record-specification-type">List</a></emu-xref>.</li><li>Set <var>group</var> to the <emu-xref href="#sec-list-and-record-specification-type"><a href="https://tc39.es/ecma262/#sec-list-and-record-specification-type">Record</a></emu-xref> { [[Key]]: <var>key</var>, [[Elements]]: <var>elements</var> }.</li><li>Append <var>group</var> as the last element of <var>groups</var>.</li></ol></li><li>Append <var>value</var> as the last element of <var>group</var>.[[Elements]].</li></ol></emu-alg>
2312+
<emu-alg><ol><li>For each <emu-xref href="#sec-list-and-record-specification-type"><a href="https://tc39.es/ecma262/#sec-list-and-record-specification-type">Record</a></emu-xref> { [[Key]], [[Elements]] } <var>g</var> of <var>groups</var>, do<ol><li>If !&nbsp;<emu-xref aoid="SameValueZero" id="_ref_17"><a href="https://tc39.es/ecma262/#sec-samevaluezero">SameValueZero</a></emu-xref>(<var>g</var>.[[Key]], <var>key</var>) is <emu-val>true</emu-val>, then<ol><li>Append <var>value</var> as the last element of <var>g</var>.[[Elements]].</li><li>Return.</li></ol></li></ol></li><li>Let <var>elements</var> be a <emu-xref href="#sec-list-and-record-specification-type"><a href="https://tc39.es/ecma262/#sec-list-and-record-specification-type">List</a></emu-xref> whose sole element is <var>value</var>.</li><li>Let <var>group</var> be the <emu-xref href="#sec-list-and-record-specification-type"><a href="https://tc39.es/ecma262/#sec-list-and-record-specification-type">Record</a></emu-xref> { [[Key]]: <var>key</var>, [[Elements]]: <var>elements</var> }.</li><li>Append <var>group</var> as the last element of <var>groups</var>.</li></ol></emu-alg>
23132313
</emu-clause>
23142314
</ins>
23152315
</emu-clause><emu-annex id="sec-copyright-and-software-license">

spec.emu

+5-7
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,13 @@ location: https://tc39.es/proposal-array-grouping/
103103
)
104104
</h1>
105105
<emu-alg>
106-
1. Let _group_ be ~empty~.
107106
1. For each Record { [[Key]], [[Elements]] } _g_ of _groups_, do
108107
1. If ! SameValueZero(_g_.[[Key]], _key_) is *true*, then
109-
1. Set _group_ to _g_.
110-
1. If _group_ is ~empty~, then
111-
1. Let _elements_ be a new empty List.
112-
1. Set _group_ to the Record { [[Key]]: _key_, [[Elements]]: _elements_ }.
113-
1. Append _group_ as the last element of _groups_.
114-
1. Append _value_ as the last element of _group_.[[Elements]].
108+
1. Append _value_ as the last element of _g_.[[Elements]].
109+
1. Return.
110+
1. Let _elements_ be a List whose sole element is _value_.
111+
1. Let _group_ be the Record { [[Key]]: _key_, [[Elements]]: _elements_ }.
112+
1. Append _group_ as the last element of _groups_.
115113
</emu-alg>
116114
</emu-clause>
117115
</ins>

0 commit comments

Comments
 (0)