[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
+17 -16
View File
@@ -1,4 +1,4 @@
class TestClass {
open annotation class TestAnnotationClass : Annotation {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
@@ -7,19 +7,7 @@ class TestClass {
}
interface TestInterface {
}
object TestObject {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
open annotation class TestAnnotationClass : Annotation {
class TestClass {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
@@ -35,11 +23,24 @@ enum class TestEnumClass : Enum<TestEnumClass> {
}
fun values(): Array<TestEnumClass> /* Synthetic body for ENUM_VALUES */
fun valueOf(value: String): TestEnumClass /* Synthetic body for ENUM_VALUEOF */
fun values(): Array<TestEnumClass> /* Synthetic body for ENUM_VALUES */
val entries: EnumEntries<TestEnumClass>
get(): EnumEntries<TestEnumClass> /* Synthetic body for ENUM_ENTRIES */
}
interface TestInterface {
}
object TestObject {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}