[Tests] Use stable order for ir/kotlinLike dumps
^KT-65406
This commit is contained in:
committed by
Space Team
parent
0fa42a9c11
commit
e6f4d6e6fa
@@ -1,14 +1,20 @@
|
||||
val testTopLevel: String /* by */
|
||||
field = DelegateProvider(value = "OK").provideDelegate(thisRef = null, property = ::testTopLevel)
|
||||
get(): String {
|
||||
return #testTopLevel$delegate.getValue(thisRef = null, property = ::testTopLevel)
|
||||
}
|
||||
|
||||
class Delegate {
|
||||
val value: String
|
||||
field = value
|
||||
get
|
||||
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
val value: String
|
||||
field = value
|
||||
get
|
||||
|
||||
operator fun getValue(thisRef: Any?, property: Any?): String {
|
||||
return <this>.<get-value>()
|
||||
}
|
||||
@@ -16,24 +22,19 @@ class Delegate {
|
||||
}
|
||||
|
||||
class DelegateProvider {
|
||||
val value: String
|
||||
field = value
|
||||
get
|
||||
|
||||
constructor(value: String) /* primary */ {
|
||||
super/*Any*/()
|
||||
/* <init>() */
|
||||
|
||||
}
|
||||
|
||||
val value: String
|
||||
field = value
|
||||
get
|
||||
|
||||
operator fun provideDelegate(thisRef: Any?, property: Any?): Delegate {
|
||||
return Delegate(value = <this>.<get-value>())
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
val testTopLevel: String /* by */
|
||||
field = DelegateProvider(value = "OK").provideDelegate(thisRef = null, property = ::testTopLevel)
|
||||
get(): String {
|
||||
return #testTopLevel$delegate.getValue(thisRef = null, property = ::testTopLevel)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user