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
@@ -8,11 +8,19 @@ class Test {
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as Test
if (serial != other.serial) return false
if (name != other.name) return false
return true
}
override fun hashCode(): Int {
return javaClass.hashCode()
var result = serial.hashCode()
result = 31 * result + name.hashCode()
return result
}
}