Merge pull request #4626 from ethereum/grammar-cleanup

grammar: remove stray IdentifierList rule
This commit is contained in:
Alex Beregszaszi 2018-07-31 11:45:14 +01:00 committed by GitHub
commit 9d0e927f85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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