[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
+25 -24
View File
@@ -1,9 +1,28 @@
fun box(): String {
var result: String = ""
result = result.plus(other = { // BLOCK
val tmp_0: String? = test_1(value = 1)
when {
EQEQ(arg0 = tmp_0, arg1 = null) -> return "fail 1"
else -> tmp_0
}
})
result = result.plus(other = { // BLOCK
val tmp_1: String? = test_2(value = 1)
when {
EQEQ(arg0 = tmp_1, arg1 = null) -> return "fail 2"
else -> tmp_1
}
})
return result
}
fun test_1(value: Any?): String? {
return { // BLOCK
val tmp_0: Any? = value
val tmp_2: Any? = value
when {
EQEQ(arg0 = tmp_0, arg1 = null) -> null
else -> tmp_0.let<Any, Nothing>(block = local fun <anonymous>(it: Any): Nothing {
EQEQ(arg0 = tmp_2, arg1 = null) -> null
else -> tmp_2.let<Any, Nothing>(block = local fun <anonymous>(it: Any): Nothing {
return "O"
}
)
@@ -14,10 +33,10 @@ fun test_1(value: Any?): String? {
fun test_2(value: Any?): String? {
return run<Nothing?>(block = local fun <anonymous>(): Nothing? {
return { // BLOCK
val tmp_1: Any? = value
val tmp_3: Any? = value
when {
EQEQ(arg0 = tmp_1, arg1 = null) -> null
else -> tmp_1.let<Any, Nothing>(block = local fun <anonymous>(it: Any): Nothing {
EQEQ(arg0 = tmp_3, arg1 = null) -> null
else -> tmp_3.let<Any, Nothing>(block = local fun <anonymous>(it: Any): Nothing {
return "K"
}
)
@@ -27,21 +46,3 @@ fun test_2(value: Any?): String? {
)
}
fun box(): String {
var result: String = ""
result = result.plus(other = { // BLOCK
val tmp_2: String? = test_1(value = 1)
when {
EQEQ(arg0 = tmp_2, arg1 = null) -> return "fail 1"
else -> tmp_2
}
})
result = result.plus(other = { // BLOCK
val tmp_3: String? = test_2(value = 1)
when {
EQEQ(arg0 = tmp_3, arg1 = null) -> return "fail 2"
else -> tmp_3
}
})
return result
}