From 582ab4eab453cd658d4904aacfad597d44573e6b Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 25 Jul 2018 00:08:42 +0100 Subject: grammar: rename AssemblyLocalBinding to AssemblyVariableDeclaration --- docs/grammar.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/grammar.txt b/docs/grammar.txt index 42467b6f..8e91a7d6 100644 --- a/docs/grammar.txt +++ b/docs/grammar.txt @@ -154,9 +154,9 @@ Ufixed = 'ufixed' | ( 'ufixed' [0-9]+ 'x' [0-9]+ ) InlineAssemblyBlock = '{' AssemblyItem* '}' -AssemblyItem = Identifier | FunctionalAssemblyExpression | InlineAssemblyBlock | AssemblyLocalBinding | AssemblyAssignment | AssemblyLabel | NumberLiteral | StringLiteral | HexLiteral +AssemblyItem = Identifier | FunctionalAssemblyExpression | InlineAssemblyBlock | AssemblyVariableDeclaration | AssemblyAssignment | AssemblyLabel | NumberLiteral | StringLiteral | HexLiteral AssemblyExpression = Identifier | FunctionalAssemblyExpression | NumberLiteral | StringLiteral | HexLiteral -AssemblyLocalBinding = 'let' Identifier ':=' AssemblyExpression +AssemblyVariableDeclaration = 'let' Identifier ':=' AssemblyExpression AssemblyAssignment = ( Identifier ':=' AssemblyExpression ) | ( '=:' Identifier ) AssemblyLabel = Identifier ':' FunctionalAssemblyExpression = Identifier '(' AssemblyItem? ( ',' AssemblyItem )* ')' -- cgit v1.2.3