[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,30 +1,38 @@
object A {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
val test1: Int
field = A.invoke(i = 42)
get
}
}
val test2: Int
field = En.X.invoke(i = 42)
get
enum class En : Enum<En> {
X = En()
private constructor() /* primary */ {
super/*Enum*/<En>()
/* <init>() */
}
X = En()
fun valueOf(value: String): En /* Synthetic body for ENUM_VALUEOF */
fun values(): Array<En> /* Synthetic body for ENUM_VALUES */
fun valueOf(value: String): En /* Synthetic body for ENUM_VALUEOF */
val entries: EnumEntries<En>
get(): EnumEntries<En> /* Synthetic body for ENUM_ENTRIES */
}
object A {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
operator fun A.invoke(i: Int): Int {
return i
}
@@ -33,10 +41,3 @@ operator fun En.invoke(i: Int): Int {
return i
}
val test1: Int
field = A.invoke(i = 42)
get
val test2: Int
field = En.X.invoke(i = 42)
get