Formatter test is generated now

This commit is contained in:
Andrey Breslav
2013-09-20 15:02:44 +04:00
parent 9d7b3a7a96
commit 8952365ae3
80 changed files with 276 additions and 229 deletions
@@ -0,0 +1,39 @@
class Some {
fun some() {
var int: Int = 0
int = 12
int += 12
int -= 12
int *= 12
int /= 12
int %= 12
true && true
true || false
12 === 3
12 !== 3
12 == 3
12 != 3
12 <= 3
12 >= 3
12 < 3
12 > 3
12 + 3 - 12
12 % 3 * 12 / 3
!true
int++
++int
int--
--int
+12
-12
1..2
}
}