New J2K: Fix existing test data
This commit is contained in:
committed by
Ilya Kirillov
parent
5236858c20
commit
f752796408
+3
-2
@@ -1,2 +1,3 @@
|
||||
//expression
|
||||
x & 2
|
||||
//statement
|
||||
int x = 2;
|
||||
x & 2;
|
||||
@@ -1 +1,2 @@
|
||||
val x = 2
|
||||
x and 2
|
||||
+3
-2
@@ -1,2 +1,3 @@
|
||||
//expression
|
||||
x | 2
|
||||
//statement
|
||||
int x = 0;
|
||||
x | 2;
|
||||
@@ -1 +1,2 @@
|
||||
val x = 0
|
||||
x or 2
|
||||
@@ -1,2 +1,3 @@
|
||||
//expression
|
||||
x << 2
|
||||
//statement
|
||||
int x = 0;
|
||||
x << 2;
|
||||
@@ -1 +1,2 @@
|
||||
val x = 0
|
||||
x shl 2
|
||||
@@ -1,2 +1,3 @@
|
||||
//expression
|
||||
x >> 2
|
||||
//statement
|
||||
int x = 0;
|
||||
x >> 2;
|
||||
@@ -1 +1,2 @@
|
||||
val x = 0
|
||||
x shr 2
|
||||
@@ -1,2 +1,3 @@
|
||||
//expression
|
||||
x >>> 2
|
||||
//statement
|
||||
int x = 0;
|
||||
x >>> 2;
|
||||
@@ -1 +1,2 @@
|
||||
val x = 0
|
||||
x.ushr(2)
|
||||
@@ -0,0 +1,2 @@
|
||||
val x = 0
|
||||
x ushr 2
|
||||
+3
-2
@@ -1,2 +1,3 @@
|
||||
//expression
|
||||
x ^ 2
|
||||
//statement
|
||||
int x = 0;
|
||||
x ^ 2;
|
||||
@@ -1 +1,2 @@
|
||||
val x = 0
|
||||
x xor 2
|
||||
Reference in New Issue
Block a user