Activate "around operators" space properties. Remove other from settings

This commit is contained in:
Nikolay Krasko
2012-03-12 17:43:29 +04:00
parent 7c8170cddd
commit ae1138c4ba
9 changed files with 266 additions and 57 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
}
}