grammar: remove stray IdentifierList rule

This was left in #4274 (dbd0723)
This commit is contained in:
Alex Beregszaszi 2018-07-31 00:27:34 +01:00
parent bc13365a7b
commit 9436fd9363

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