aboutsummaryrefslogtreecommitdiffstats
path: root/docs/grammar.txt
diff options
context:
space:
mode:
authorFederico Bond <federicobond@gmail.com>2016-12-08 09:00:16 +0800
committerGitHub <noreply@github.com>2016-12-08 09:00:16 +0800
commit926a252961806a5a70079bd046c85bfe9f7c8a9a (patch)
tree0b15abe0afe85657f1ee8d1ed72c68bf01cadf6c /docs/grammar.txt
parent740294f65ac78d57989820b5efe45f787069bc9d (diff)
downloaddexon-solidity-926a252961806a5a70079bd046c85bfe9f7c8a9a.tar
dexon-solidity-926a252961806a5a70079bd046c85bfe9f7c8a9a.tar.gz
dexon-solidity-926a252961806a5a70079bd046c85bfe9f7c8a9a.tar.bz2
dexon-solidity-926a252961806a5a70079bd046c85bfe9f7c8a9a.tar.lz
dexon-solidity-926a252961806a5a70079bd046c85bfe9f7c8a9a.tar.xz
dexon-solidity-926a252961806a5a70079bd046c85bfe9f7c8a9a.tar.zst
dexon-solidity-926a252961806a5a70079bd046c85bfe9f7c8a9a.zip
Remove duplicate Identifier from AssemblyItem grammar rule
Diffstat (limited to 'docs/grammar.txt')
-rw-r--r--docs/grammar.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/grammar.txt b/docs/grammar.txt
index b0c9da98..d15fbaf7 100644
--- a/docs/grammar.txt
+++ b/docs/grammar.txt
@@ -112,7 +112,7 @@ Ufixed = 'ufixed' | 'ufixed0x8' | 'ufixed0x16' | 'ufixed0x24' | 'ufixed0x32' | '
InlineAssemblyBlock = '{' AssemblyItem* '}'
-AssemblyItem = Identifier | FunctionalAssemblyExpression | InlineAssemblyBlock | AssemblyLocalBinding | AssemblyAssignment | Identifier | NumberLiteral | StringLiteral | HexLiteral
+AssemblyItem = Identifier | FunctionalAssemblyExpression | InlineAssemblyBlock | AssemblyLocalBinding | AssemblyAssignment | NumberLiteral | StringLiteral | HexLiteral
AssemblyLocalBinding = 'let' Identifier ':=' FunctionalAssemblyExpression
AssemblyAssignment = Identifier ':=' FunctionalAssemblyExpression | '=:' Identifier
FunctionalAssemblyExpression = Identifier '(' AssemblyItem? ( ',' AssemblyItem )* ')'