[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
@@ -2,42 +2,43 @@ fun test1(a: Int, b: Int): Int {
return a.plus(other = b)
}
fun test1x(a: Int, b: Int): Int {
return a.plus(other = b)
}
fun test2(a: Int, b: Int): Int {
return a.minus(other = b)
}
fun test2x(a: Int, b: Int): Int {
return a.minus(other = b)
}
fun test3(a: Int, b: Int): Int {
return a.times(other = b)
}
fun test3x(a: Int, b: Int): Int {
return a.times(other = b)
}
fun test4(a: Int, b: Int): Int {
return a.div(other = b)
}
fun test4x(a: Int, b: Int): Int {
return a.div(other = b)
}
fun test5(a: Int, b: Int): Int {
return a.rem(other = b)
}
fun test5x(a: Int, b: Int): Int {
return a.rem(other = b)
}
fun test6(a: Int, b: Int): IntRange {
return a.rangeTo(other = b)
}
fun test1x(a: Int, b: Int): Int {
return a.plus(other = b)
}
fun test2x(a: Int, b: Int): Int {
return a.minus(other = b)
}
fun test3x(a: Int, b: Int): Int {
return a.times(other = b)
}
fun test4x(a: Int, b: Int): Int {
return a.div(other = b)
}
fun test5x(a: Int, b: Int): Int {
return a.rem(other = b)
}