diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-31 07:27:34 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-31 07:28:01 +0800 |
commit | 9436fd9363cb827b889ec6593fcd2241bee6cd8e (patch) | |
tree | 77f5ac98f9de2bba9961f36c35df0ad2ac8ec7b4 | |
parent | bc13365a7b3920c361ff2ae5f1a9bb7e98ad07b2 (diff) | |
download | dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.gz dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.bz2 dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.lz dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.xz dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.tar.zst dexon-solidity-9436fd9363cb827b889ec6593fcd2241bee6cd8e.zip |
grammar: remove stray IdentifierList rule
This was left in #4274 (dbd0723)
-rw-r--r-- | docs/grammar.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/grammar.txt b/docs/grammar.txt index 8e91a7d6..809fcffc 100644 --- a/docs/grammar.txt +++ b/docs/grammar.txt @@ -79,7 +79,6 @@ Return = 'return' Expression? Throw = 'throw' EmitStatement = 'emit' FunctionCall VariableDefinition = (VariableDeclaration | '(' VariableDeclaration? (',' VariableDeclaration? )* ')' ) ( '=' Expression )? -IdentifierList = '(' ( Identifier? ',' )* Identifier? ')' // Precedence by order (see github.com/ethereum/solidity/pull/732) Expression |