Remove after from grammar.txt

This commit is contained in:
Denton Liu
2016-08-11 10:15:59 -04:00
parent 58d37f24ae
commit 92a711c4fb
+1 -1
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