From e9481f77be588f1770965fde139e7d23570ac48e Mon Sep 17 00:00:00 2001 From: Richard Gibson Date: Mon, 18 Sep 2023 10:27:08 -0400 Subject: [PATCH] Editorial: Rename new SDO to distinguish it from grammar nonterminals https://github.com/tc39/proposal-json-parse-with-source/pull/41#issuecomment-1419991196 --- spec.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spec.html b/spec.html index b5faeb2..6a0a69e 100644 --- a/spec.html +++ b/spec.html @@ -165,7 +165,7 @@

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 @@ -402,9 +402,9 @@

- +

- Static Semantics: PropertyDefinitionList ( + Static Semantics: PropertyDefinitionNodes ( ): a List of Parse Nodes

@@ -422,7 +422,7 @@

PropertyDefinitionList : PropertyDefinitionList `,` PropertyDefinition - 1. Return the list-concatenation of PropertyDefinitionList of |PropertyDefinitionList| and « |PropertyDefinition| ». + 1. Return the list-concatenation of PropertyDefinitionNodes of |PropertyDefinitionList| and « |PropertyDefinition| ».