[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,23 +1,4 @@
open annotation class Storage : Annotation {
constructor(value: String) /* primary */ {
super/*Any*/()
/* <init>() */
}
val value: String
field = value
get
}
open annotation class State : Annotation {
constructor(name: String, storages: Array<Storage>) /* primary */ {
super/*Any*/()
/* <init>() */
}
val name: String
field = name
get
@@ -26,6 +7,25 @@ open annotation class State : Annotation {
field = storages
get
constructor(name: String, storages: Array<Storage>) /* primary */ {
super/*Any*/()
/* <init>() */
}
}
open annotation class Storage : Annotation {
val value: String
field = value
get
constructor(value: String) /* primary */ {
super/*Any*/()
/* <init>() */
}
}
@State(name = "1", storages = [Storage(value = "HELLO")])
@@ -37,3 +37,4 @@ class Test {
}
}