Fix for KT-5312 J2K: Correct bit operations priority after conversion

Now `PolyadicExpression` breaks down to BinaryExpression`s
This commit is contained in:
Simon Ogorodnik
2016-10-14 19:49:10 +03:00
parent 1069257e95
commit f1c371143c
9 changed files with 67 additions and 28 deletions
@@ -0,0 +1,2 @@
//expression
/*pre*/ 5 /*operand '5'*/ << /*left shift*/ 16 /*operand '16'*/ | /*or*/ 1 /*operand '1'*/ >> /*right shift*/ 8 /*operand '8'*/ | /*or*/ 0 /*operand '0'*/ /*post comment*/