diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-31 18:45:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 18:45:14 +0800 |
commit | 9d0e927f85eb5621bb464ced1a54b6624465779e (patch) | |
tree | a20ce844ee3c65f3de800ea714eb1308341948a8 | |
parent | fe28814d836630bd66d615ef11f1620deaf3eade (diff) | |
parent | 9436fd9363cb827b889ec6593fcd2241bee6cd8e (diff) | |
download | dexon-solidity-9d0e927f85eb5621bb464ced1a54b6624465779e.tar.gz dexon-solidity-9d0e927f85eb5621bb464ced1a54b6624465779e.tar.zst dexon-solidity-9d0e927f85eb5621bb464ced1a54b6624465779e.zip |
Merge pull request #4626 from ethereum/grammar-cleanup
grammar: remove stray IdentifierList rule
-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 |