[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
@@ -7,6 +7,36 @@ open annotation class Ann : Annotation {
}
class Delegated : Base {
private /* final field */ val $$delegate_0: Base = b
constructor(b: Base) /* primary */ {
super/*Any*/()
/* <init>() */
}
@Ann
override fun func() {
<this>.#$$delegate_0.func()
}
override val prop: Int
override get(): Int {
return <this>.#$$delegate_0.<get-prop>()
}
override var propWithAccessors: Int
@Ann
override get(): Int {
return <this>.#$$delegate_0.<get-propWithAccessors>()
}
@Ann
override set(<set-?>: Int) {
<this>.#$$delegate_0.<set-propWithAccessors>(<set-?> = <set-?>)
}
}
interface Base {
@Ann
abstract fun func()
@@ -23,32 +53,3 @@ interface Base {
}
class Delegated : Base {
constructor(b: Base) /* primary */ {
super/*Any*/()
/* <init>() */
}
private /* final field */ val $$delegate_0: Base = b
override val prop: Int
override get(): Int {
return <this>.#$$delegate_0.<get-prop>()
}
override var propWithAccessors: Int
@Ann
override get(): Int {
return <this>.#$$delegate_0.<get-propWithAccessors>()
}
@Ann
override set(<set-?>: Int) {
<this>.#$$delegate_0.<set-propWithAccessors>(<set-?> = <set-?>)
}
@Ann
override fun func() {
<this>.#$$delegate_0.func()
}
}