Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit fca4d4b

Browse files
formatting (#191)
1 parent 0e04e2e commit fca4d4b

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ jobs:
1717
node-version: 16
1818
- run: npm ci
1919
- run: npm run build
20+
- run: npm run check-format

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"private": true,
33
"scripts": {
4-
"build": "mkdir -p dist && ecmarkup --strict --load-biblio @tc39/ecma262-biblio --verbose --js-out dist/ecmarkup.js --css-out dist/ecmarkup.css spec.html dist/index.html"
4+
"build": "mkdir -p dist && ecmarkup --strict --load-biblio @tc39/ecma262-biblio --verbose --js-out dist/ecmarkup.js --css-out dist/ecmarkup.css spec.html dist/index.html",
5+
"format": "emu-format --write spec.html",
6+
"check-format": "emu-format --check spec.html"
57
},
68
"devDependencies": {
79
"@tc39/ecma262-biblio": "2.0.2334",

spec.html

+10-5
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}
4444
</style>
4545

46-
<div id=metadata-block>
46+
<div id="metadata-block">
4747
<h1>Contributing to this Proposal</h1>
4848
<p>This proposal is developed on GitHub with the help of the ECMAScript community. There are a number of ways to contribute to the development of this specification:</p>
4949
<ul>
@@ -96,7 +96,8 @@ <h1>Well-Known Intrinsic Objects</h1>
9696
<ins>`AsyncIterator.prototype`</ins>
9797
</td>
9898
<td>
99-
An object that all standard built-in async iterator objects indirectly inherit from <p><ins>The initial value of the *"prototype"* data property of %AsyncIterator%; i.e., %AsyncIterator.prototype%</ins></p>
99+
An object that all standard built-in async iterator objects indirectly inherit from
100+
<p><ins>The initial value of the *"prototype"* data property of %AsyncIterator%; i.e., %AsyncIterator.prototype%</ins></p>
100101
</td>
101102
</tr>
102103
<tr>
@@ -118,7 +119,8 @@ <h1>Well-Known Intrinsic Objects</h1>
118119
<ins>`Iterator.prototype`</ins>
119120
</td>
120121
<td>
121-
An object that all standard built-in iterator objects indirectly inherit from <p><ins>The initial value of the *"prototype"* data property of %Iterator%; i.e., %Iterator.prototype%</ins></p>
122+
An object that all standard built-in iterator objects indirectly inherit from
123+
<p><ins>The initial value of the *"prototype"* data property of %Iterator%; i.e., %Iterator.prototype%</ins></p>
122124
</td>
123125
</tr>
124126
</table>
@@ -134,7 +136,7 @@ <h1>Operations on Iterator Objects</h1>
134136
<emu-clause id="sec-getiteratordirect" type="abstract operation">
135137
<h1>
136138
GetIteratorDirect (
137-
_obj_: an ECMAScript language value
139+
_obj_: an ECMAScript language value,
138140
): either a normal completion containing an IteratorRecord or a throw completion
139141
</h1>
140142
<dl class="header">
@@ -152,7 +154,7 @@ <h1>
152154
<h1>
153155
IteratorStep (
154156
_iteratorRecord_: an Iterator Record,
155-
<ins>optional value: an ECMAScript language value,</ins>
157+
<ins>optional _value_: an ECMAScript language value,</ins>
156158
): either a normal completion containing either an Object or *false*, or a throw completion
157159
</h1>
158160
<dl class="header">
@@ -220,6 +222,7 @@ <h1>Iterator ( )</h1>
220222

221223
<emu-clause id="sec-properties-of-the-iterator-constructor">
222224
<h1>Properties of the Iterator Constructor</h1>
225+
223226
<emu-clause id="sec-iterator.prototype">
224227
<h1>Iterator.prototype</h1>
225228
<p>The initial value of Iterator.prototype is %Iterator.prototype%.</p>
@@ -297,6 +300,7 @@ <h1>The AsyncIterator Constructor</h1>
297300
<li>is the initial value of the *AsyncIterator* property of the global object.</li>
298301
<li>is designed to be subclassable. It may be used as the value of an *extends* clause of a class definition.</li>
299302
</ul>
303+
300304
<emu-clause id="sec-asynciterator">
301305
<h1>AsyncIterator ( )</h1>
302306
<p>When the `AsyncIterator` function is called, the following steps are taken:</p>
@@ -309,6 +313,7 @@ <h1>AsyncIterator ( )</h1>
309313

310314
<emu-clause id="sec-properties-of-the-asynciterator-constructor">
311315
<h1>Properties of the AsyncIterator Constructor</h1>
316+
312317
<emu-clause id="sec-asynciterator.prototype">
313318
<h1>AsyncIterator.prototype</h1>
314319
<p>The initial value of AsyncIterator.prototype is %AsyncIterator.prototype%.</p>

0 commit comments

Comments
 (0)