[FIR] Save declarations in metadata in source order

^KT-54792 Fixed
^KT-54801
^KT-54800
This commit is contained in:
Dmitriy Novozhilov
2023-04-13 15:11:56 +03:00
committed by Space Team
parent b359a5538c
commit af60681705
128 changed files with 833 additions and 256 deletions
@@ -0,0 +1,8 @@
public open class DifferentGetterAndSetter : R|kotlin/Any| {
public open fun setSomething(p0: R|kotlin/String?|): R|kotlin/Unit|
public open fun getSomething(): R|kotlin/Int|
public constructor(): R|test/DifferentGetterAndSetter|
}
@@ -0,0 +1,6 @@
public abstract interface JavaBeanAbstractGetter : R|kotlin/Any| {
public abstract fun getRed(): R|kotlin/Int|
public abstract fun getBlue(): R|kotlin/Int|
}
@@ -0,0 +1,8 @@
public open class TwoSetters : R|kotlin/Any| {
public open fun setSize(p0: R|kotlin/String?|): R|kotlin/Unit|
public open fun setSize(p0: R|kotlin/Int|): R|kotlin/Unit|
public constructor(): R|test/TwoSetters|
}