Allow generate toString(), equals(), and hashCode() to include non-default accessors

^KT-15262 Fixed
This commit is contained in:
n-p-s
2020-09-03 12:12:33 +02:00
committed by Vladimir Dolzhenko
parent 3bf18343f5
commit af6e744b65
11 changed files with 51 additions and 8 deletions
@@ -4,5 +4,8 @@ class Test {
field = value.toUpperCase()
}
var name: String = ""
val age by lazy { 15 + 10 }
val color: String
get() = "Purple"
<caret>
}