[Tests] Use stable order for ir/kotlinLike dumps

^KT-65406
This commit is contained in:
Pavel Kunyavskiy
2024-02-05 16:23:41 +01:00
committed by Space Team
parent 0fa42a9c11
commit e6f4d6e6fa
1265 changed files with 43896 additions and 48472 deletions
@@ -1,21 +1,17 @@
val equals: KFunction2<Z, @ParameterName(name = "other") Any?, Boolean>
field = Z::equals
get
@JvmInline
value class Z {
constructor(s: String) /* primary */ {
super/*Any*/()
/* <init>() */
}
val s: String
field = s
get
override fun toString(): String {
return "Z(" + "s=" + <this>.#s + ")"
}
constructor(s: String) /* primary */ {
super/*Any*/()
/* <init>() */
override fun hashCode(): Int {
return <this>.#s.hashCode()
}
override operator fun equals(other: Any?): Boolean {
@@ -29,8 +25,13 @@ value class Z {
return true
}
override fun hashCode(): Int {
return <this>.#s.hashCode()
}
override fun toString(): String {
return "Z(" + "s=" + <this>.#s + ")"
}
}
val equals: KFunction2<Z, @ParameterName(name = "other") Any?, Boolean>
field = Z::equals
get