Remove after from grammar.txt

This commit is contained in:
Denton Liu 2016-08-10 16:25:17 -04:00
parent 58d37f24ae
commit 92a711c4fb

View File

@ -56,7 +56,7 @@ VariableDefinition = VariableDeclaration ( '=' Expression )?
// Precedence by order (see github.com/ethereum/solidity/pull/732)
Expression =
( Expression ('++' | '--') | FunctionCall | IndexAccess | MemberAccess | '(' Expression ')' )
| ('!' | '~' | 'after' | 'delete' | '++' | '--' | '+' | '-') Expression
| ('!' | '~' | 'delete' | '++' | '--' | '+' | '-') Expression
| Expression '**' Expression
| Expression ('*' | '/' | '%') Expression
| Expression ('+' | '-') Expression