[Tests] Use stable order for ir/kotlinLike dumps
^KT-65406
This commit is contained in:
committed by
Space Team
parent
0fa42a9c11
commit
e6f4d6e6fa
+15
-14
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user