[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
@@ -1,8 +1,3 @@
interface IFoo {
abstract fun foo()
}
val test1: Any
field = { // BLOCK
local class <no name provided> {
@@ -38,12 +33,6 @@ val test2: IFoo
get
class Outer {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
abstract inner class Inner : IFoo {
constructor() /* primary */ {
super/*Any*/()
@@ -53,6 +42,12 @@ class Outer {
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun test3(): Inner {
return { // BLOCK
local class <no name provided> : Inner {
@@ -74,6 +69,11 @@ class Outer {
}
interface IFoo {
abstract fun foo()
}
fun Outer.test4(): Inner {
return { // BLOCK
local class <no name provided> : Inner {
@@ -92,3 +92,4 @@ fun Outer.test4(): Inner {
<no name provided>()
}
}