diff options
author | Federico Bond <federicobond@gmail.com> | 2016-12-08 09:00:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-08 09:00:16 +0800 |
commit | 926a252961806a5a70079bd046c85bfe9f7c8a9a (patch) | |
tree | 0b15abe0afe85657f1ee8d1ed72c68bf01cadf6c /docs | |
parent | 740294f65ac78d57989820b5efe45f787069bc9d (diff) | |
download | dexon-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')
-rw-r--r-- | docs/grammar.txt | 2 |
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 )* ')' |