Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editorial: Rename new SDO to distinguish it from grammar nonterminals #43

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Changes from all 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
8 changes: 4 additions & 4 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ <h1>
1. Set _I_ to _I_ + 1.
1. Else,
1. Assert: _typedValNode_ is an |ObjectLiteral| Parse Node.
1. Let _propertyNodes_ be PropertyDefinitionList of _typedValNode_.
1. Let _propertyNodes_ be PropertyDefinitionNodes of _typedValNode_.
1. NOTE: Because _val_ was produced from JSON text and has not been modified, all of its property keys are Strings and will be exhaustively enumerated in source text order.
1. Let _keys_ be ! EnumerableOwnProperties(_val_, ~key~).
1. For each String _P_ of _keys_, do
Expand Down Expand Up @@ -402,9 +402,9 @@ <h1>
</ins>

<ins class="block">
<emu-clause id="sec-static-semantics-propertydefinitionlist" type="sdo">
<emu-clause id="sec-static-semantics-propertydefinitionnodes" type="sdo">
<h1>
Static Semantics: PropertyDefinitionList (
Static Semantics: PropertyDefinitionNodes (
): a List of Parse Nodes
</h1>
<dl class="header">
Expand All @@ -422,7 +422,7 @@ <h1>

<emu-grammar>PropertyDefinitionList : PropertyDefinitionList `,` PropertyDefinition</emu-grammar>
<emu-alg>
1. Return the list-concatenation of PropertyDefinitionList of |PropertyDefinitionList| and &laquo; |PropertyDefinition| &raquo;.
1. Return the list-concatenation of PropertyDefinitionNodes of |PropertyDefinitionList| and &laquo; |PropertyDefinition| &raquo;.
</emu-alg>
</emu-clause>
</ins>
Loading