Merge with Alex's refactroings.

This commit is contained in:
Pavel V. Talanov
2012-08-29 16:48:47 +04:00
60 changed files with 747 additions and 637 deletions
@@ -0,0 +1,18 @@
enum class Direction {
NORTH
SOUTH(val x : Int) {
fun again() : String {
return "Hello"
}
class Hello
}
WEST {
class Some {
fun test() : Int {
return 12 + 14
}
}
}
EAST
}