Don't generate unnecessary accessors for private class properties

This commit is contained in:
Alexander Udalov
2014-07-16 21:04:40 +04:00
parent 4bdf7e3426
commit a07909bb52
14 changed files with 199 additions and 42 deletions
@@ -0,0 +1,18 @@
class A(
private val x: String,
private var y: Double
) {
fun foo() {
val r = {
if (x != "abc") throw AssertionError("$x")
y = 0.0
if (y != 0.0) throw AssertionError("$y")
}
r()
}
}
fun box(): String {
A("abc", 3.14).foo()
return "OK"
}
@@ -0,0 +1,31 @@
class C {
// All these properties should have corresponding accessors
private val valWithGet: String
get() = ""
private var varWithGetSet: Int
get() = 0
set(value) {}
private var delegated: Int by Delegate
private var String.extension: String
get() = this
set(value) {}
class object {
private val classObjectVal: Long
get() = 1L
}
// This property should not have accessors
private var varNoAccessors = 0L
get set
}
object Delegate {
fun get(x: C, p: PropertyMetadata) = throw AssertionError()
fun set(x: C, p: PropertyMetadata, value: Int) = throw AssertionError()
}