testData/* moved to testData/ast/

This commit is contained in:
Sergey Ignatov
2011-11-07 12:21:49 +04:00
parent 433405c4e1
commit d0b352714f
427 changed files with 1 additions and 1 deletions
@@ -0,0 +1 @@
x & 2
@@ -0,0 +1 @@
(x and 2)
@@ -0,0 +1 @@
true && false
@@ -0,0 +1 @@
(true && false)
@@ -0,0 +1 @@
true || false
@@ -0,0 +1 @@
(true || false)
@@ -0,0 +1 @@
1 / 2
@@ -0,0 +1 @@
(1 / 2)
@@ -0,0 +1 @@
1 > 2
@@ -0,0 +1 @@
(1 > 2)
@@ -0,0 +1 @@
1 >= 2
@@ -0,0 +1 @@
(1 >= 2)
@@ -0,0 +1 @@
1 < 2
@@ -0,0 +1 @@
(1 < 2)
@@ -0,0 +1 @@
1 <= 2
@@ -0,0 +1 @@
(1 <= 2)
@@ -0,0 +1 @@
1 - 2
@@ -0,0 +1 @@
(1 - 2)
@@ -0,0 +1 @@
1 * 2
@@ -0,0 +1 @@
(1 * 2)
@@ -0,0 +1 @@
x | 2
@@ -0,0 +1 @@
(x or 2)
@@ -0,0 +1 @@
1 + 2
@@ -0,0 +1 @@
(1 + 2)
@@ -0,0 +1 @@
1 % 2
@@ -0,0 +1 @@
(1 % 2)
@@ -0,0 +1 @@
x << 2
@@ -0,0 +1 @@
(x shl 2)
@@ -0,0 +1 @@
x >> 2
@@ -0,0 +1 @@
(x shr 2)
@@ -0,0 +1 @@
x >>> 2
@@ -0,0 +1 @@
x.cyclicShiftRight(2)
@@ -0,0 +1 @@
x ^ 2
@@ -0,0 +1 @@
(x xor 2)