diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-11 04:25:17 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-11 22:15:59 +0800 |
commit | 92a711c4fb0f84186aeab955150a733bb1293aae (patch) | |
tree | cafd9026872a39c4e048f7925dab2fe2fad5a9e8 | |
parent | 58d37f24aedc3c045396704da5353896af362ff4 (diff) | |
download | dexon-solidity-92a711c4fb0f84186aeab955150a733bb1293aae.tar.gz dexon-solidity-92a711c4fb0f84186aeab955150a733bb1293aae.tar.zst dexon-solidity-92a711c4fb0f84186aeab955150a733bb1293aae.zip |
Remove after from grammar.txt
-rw-r--r-- | libsolidity/grammar.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/grammar.txt b/libsolidity/grammar.txt index 6d92fc59..0d1f68a6 100644 --- a/libsolidity/grammar.txt +++ b/libsolidity/grammar.txt @@ -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 |