diff options
author | chriseth <chris@ethereum.org> | 2016-08-12 21:09:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-12 21:09:55 +0800 |
commit | 0d894a6832d21ba68f0f3d2fea66c8f4efc45815 (patch) | |
tree | 79d06aa3333b9921fbb99e1cecd56dd3ef595df7 /libsolidity/grammar.txt | |
parent | 08248ff4edca83c2edc57a4f081002cd2bb393a4 (diff) | |
parent | 92a711c4fb0f84186aeab955150a733bb1293aae (diff) | |
download | dexon-solidity-0d894a6832d21ba68f0f3d2fea66c8f4efc45815.tar.gz dexon-solidity-0d894a6832d21ba68f0f3d2fea66c8f4efc45815.tar.zst dexon-solidity-0d894a6832d21ba68f0f3d2fea66c8f4efc45815.zip |
Merge pull request #844 from Denton-L/remove-after
BREAKING: Remove after
Diffstat (limited to 'libsolidity/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 |