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

Invert Await parameter, add ContainsAwait, updates #46

Merged
merged 14 commits into from
Jun 23, 2021
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
coverage
docs
2,707 changes: 0 additions & 2,707 deletions docs/index.html

This file was deleted.

8,342 changes: 7,880 additions & 462 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"license": "SEE LICENSE IN https://tc39.github.io/ecma262/#sec-copyright-and-software-license",
"devDependencies": {
"del": "^5.1.0",
"ecmarkup": "^6.1.0",
"ecmarkup": "^7.1.0",
"gulp": "^4.0.2",
"gulp-emu": "^1.3.2",
"gulp-live-server": "0.0.31"
Expand Down
31 changes: 26 additions & 5 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,32 @@ <h1>Abstract Operations</h1>
<emu-import href="sec-operations-on-objects-patch.html"></emu-import>
</emu-clause>

<emu-clause id="sec-ecmascript-language-expressions">
<h1>ECMAScript Language: Expressions</h1>
<emu-clause id="sec-identifiers">
<h1>Identifiers</h1>
<emu-import href="sec-identifiers-static-semantics-early-errors-patch.html"></emu-import>
<emu-clause id="sec-syntax-directed-operations">
<h1>Syntax-Directed Operations</h1>
<p>In addition to those defined in this section, specialized syntax-directed operations are defined throughout this specification.</p>
<emu-clause id="sec-syntax-directed-operations-scope-analysis">
<h1>Scope Analysis</h1>
<emu-import href="sec-static-semantics-lexicallydeclarednames-patch.html"></emu-import>
<emu-import href="sec-static-semantics-lexicallyscopeddeclarations-patch.html"></emu-import>
<emu-import href="sec-static-semantics-vardeclarednames-patch.html"></emu-import>
<emu-import href="sec-static-semantics-varscopeddeclarations-patch.html"></emu-import>
</emu-clause>

<emu-clause id="sec-syntax-directed-operations-labels">
<h1>Labels</h1>
<emu-import href="sec-static-semantics-containsduplicatelabels-patch.html"></emu-import>
<emu-import href="sec-static-semantics-containsundefinedbreaktarget-patch.html"></emu-import>
<emu-import href="sec-static-semantics-containsundefinedcontinuetarget-patch.html"></emu-import>
</emu-clause>
<emu-clause id="sec-syntax-directed-operations-contains">
<h1>Contains</h1>
<emu-import href="sec-static-semantics-contains-patch.html"></emu-import>
<emu-import href="sec-static-semantics-computedpropertycontains-patch.html"></emu-import>
</emu-clause>
<emu-clause id="sec-syntax-directed-operations-miscellaneous">
<h1>Miscellaneous</h1>
<p>These operations are used in multiple places throughout the specification.</p>
<emu-import href="sec-static-semantics-propname-patch.html"></emu-import>
</emu-clause>
</emu-clause>

Expand Down
Loading