diff options
author | Walter Weinmann <walter.weinmann@gmail.com> | 2016-11-14 20:22:25 +0800 |
---|---|---|
committer | Walter Weinmann <walter.weinmann@gmail.com> | 2016-11-14 20:22:29 +0800 |
commit | 176c06f386ef096f119dd09ae0f6e16f389894ae (patch) | |
tree | 8a4c3083280d217c7c53caf450c698204352e95b /libsolidity/grammar.txt | |
parent | 7820f80192807b228e57ad9879d5ce2787a4d278 (diff) | |
download | dexon-solidity-176c06f386ef096f119dd09ae0f6e16f389894ae.tar dexon-solidity-176c06f386ef096f119dd09ae0f6e16f389894ae.tar.gz dexon-solidity-176c06f386ef096f119dd09ae0f6e16f389894ae.tar.bz2 dexon-solidity-176c06f386ef096f119dd09ae0f6e16f389894ae.tar.lz dexon-solidity-176c06f386ef096f119dd09ae0f6e16f389894ae.tar.xz dexon-solidity-176c06f386ef096f119dd09ae0f6e16f389894ae.tar.zst dexon-solidity-176c06f386ef096f119dd09ae0f6e16f389894ae.zip |
#1362: As it stands currently, the >>> operator will not be implemented.
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 3edb4eba..6ad8994a 100644 --- a/libsolidity/grammar.txt +++ b/libsolidity/grammar.txt @@ -65,7 +65,7 @@ Expression = | Expression '**' Expression | Expression ('*' | '/' | '%') Expression | Expression ('+' | '-') Expression - | Expression ('<<' | '>>' | '>>>') + | Expression ('<<' | '>>') | Expression '&' Expression | Expression '^' Expression | Expression '|' Expression |