[IR] Split implementation of DataClassMembersGenerator to IR based and descriptor based

This commit is contained in:
Dmitriy Novozhilov
2023-06-22 11:25:53 +03:00
committed by Space Team
parent 27f4b53570
commit 6bb7fc05df
19 changed files with 214 additions and 193 deletions
@@ -14,7 +14,7 @@ data class Some<T : Any?> {
}
fun copy(value: T = <this>.#value): Some<T> {
return Some<Any>(value = value)
return Some<T>(value = value)
}
override operator fun equals(other: Any?): Boolean {