[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
+20 -19
View File
@@ -1,13 +1,29 @@
open class ControlFlowInfo<K : Any?, V : Any?> : Map<K, V> {
val map: Map<K, V>
field = map
get
constructor(map: Map<K, V>) /* primary */ {
super/*Any*/()
/* <init>() */
}
val map: Map<K, V>
field = map
get
override fun containsKey(key: K): Boolean {
return <this>.#map.containsKey(key = key)
}
override fun containsValue(value: V): Boolean {
return <this>.#map.containsValue(value = value)
}
override operator fun get(key: K): V? {
return <this>.#map.get(key = key)
}
override fun isEmpty(): Boolean {
return <this>.#map.isEmpty()
}
override val entries: Set<Entry<K, V>>
override get(): Set<Entry<K, V>> {
@@ -29,22 +45,6 @@ open class ControlFlowInfo<K : Any?, V : Any?> : Map<K, V> {
return <this>.#map.<get-values>()
}
override fun containsKey(key: K): Boolean {
return <this>.#map.containsKey(key = key)
}
override fun containsValue(value: V): Boolean {
return <this>.#map.containsValue(value = value)
}
override operator fun get(key: K): V? {
return <this>.#map.get(key = key)
}
override fun isEmpty(): Boolean {
return <this>.#map.isEmpty()
}
}
class StringFlowInfo : ControlFlowInfo<String, String> {
@@ -60,3 +60,4 @@ class StringFlowInfo : ControlFlowInfo<String, String> {
}
}