code review

This commit is contained in:
Dmitry Jemerov
2015-09-25 17:04:02 +02:00
parent 4e7236529c
commit 9de74921ca
10 changed files with 113 additions and 78 deletions
@@ -0,0 +1,5 @@
// IS_APPLICABLE: false
abstract class Foo {
abstract val <caret>x: Int
}
@@ -0,0 +1,6 @@
// IS_APPLICABLE: false
class Foo {
val <caret>x: Int
get() = 1
}
@@ -0,0 +1,3 @@
class Foo {
val <caret>x: Any = ""
}
@@ -0,0 +1,5 @@
class Foo {
private val _x: Any = ""
val x: Any
get() = _x
}