diff options
author | Federico Bond <federicobond@gmail.com> | 2016-12-28 23:53:40 +0800 |
---|---|---|
committer | Federico Bond <federicobond@gmail.com> | 2016-12-28 23:53:40 +0800 |
commit | 1f80dbb39a69eb3be94111d190aa8511990fa951 (patch) | |
tree | 5512ac44d231a31b18e3cfd5f34a492629722ccf /docs/grammar.txt | |
parent | eafd852a766645da0cb466bff681b9bbb1d6da00 (diff) | |
download | dexon-solidity-1f80dbb39a69eb3be94111d190aa8511990fa951.tar.gz dexon-solidity-1f80dbb39a69eb3be94111d190aa8511990fa951.tar.zst dexon-solidity-1f80dbb39a69eb3be94111d190aa8511990fa951.zip |
Add missing right-hand side expression for shifts
Diffstat (limited to 'docs/grammar.txt')
-rw-r--r-- | docs/grammar.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/grammar.txt b/docs/grammar.txt index c9f7f448..5965d1f6 100644 --- a/docs/grammar.txt +++ b/docs/grammar.txt @@ -69,7 +69,7 @@ Expression = | Expression '**' Expression | Expression ('*' | '/' | '%') Expression | Expression ('+' | '-') Expression - | Expression ('<<' | '>>') + | Expression ('<<' | '>>') Expression | Expression '&' Expression | Expression '^' Expression | Expression '|' Expression |