[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,10 +1,17 @@
enum class En : Enum<En> {
private constructor() /* primary */ {
super/*Enum*/<En>()
open annotation class TestAnn : Annotation {
val x: En
field = x
get
constructor(x: En) /* primary */ {
super/*Any*/()
/* <init>() */
}
}
enum class En : Enum<En> {
A = En()
B = En()
@@ -13,28 +20,22 @@ enum class En : Enum<En> {
D = En()
fun values(): Array<En> /* Synthetic body for ENUM_VALUES */
private constructor() /* primary */ {
super/*Enum*/<En>()
/* <init>() */
}
fun valueOf(value: String): En /* Synthetic body for ENUM_VALUEOF */
fun values(): Array<En> /* Synthetic body for ENUM_VALUES */
val entries: EnumEntries<En>
get(): EnumEntries<En> /* Synthetic body for ENUM_ENTRIES */
}
open annotation class TestAnn : Annotation {
constructor(x: En) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: En
field = x
get
}
@TestAnn(x = En.A)
fun test1() {
}