[FE Test] Move FIR dumps for LoadCompiledKotlin tests close to original testdata
This commit is contained in:
committed by
Space Team
parent
de33a21fd1
commit
e94a64a4f2
+8
@@ -0,0 +1,8 @@
|
||||
public open class DifferentGetterAndSetter : R|kotlin/Any| {
|
||||
public open fun getSomething(): R|kotlin/Int|
|
||||
|
||||
public open fun setSomething(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/DifferentGetterAndSetter|
|
||||
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public abstract interface JavaBeanAbstractGetter : R|kotlin/Any| {
|
||||
public abstract fun getBlue(): R|kotlin/Int|
|
||||
|
||||
public abstract fun getRed(): R|kotlin/Int|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public open class JavaBeanVal : R|kotlin/Any| {
|
||||
public open fun getColor(): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/JavaBeanVal|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public open class JavaBeanVar : R|kotlin/Any| {
|
||||
public open fun getColor(): R|kotlin/String?|
|
||||
|
||||
public open fun setColor(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/JavaBeanVar|
|
||||
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public open class JavaBeanVarOfGenericType<P> : R|kotlin/Any| {
|
||||
public open fun getCharacters(): R|java/util/ArrayList<P>?|
|
||||
|
||||
public open fun setCharacters(p0: R|java/util/ArrayList<P>?|): R|kotlin/Unit|
|
||||
|
||||
public constructor<P>(): R|test/JavaBeanVarOfGenericType<P>|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public open class TwoSetters : R|kotlin/Any| {
|
||||
public open fun setSize(p0: R|kotlin/Int|): R|kotlin/Unit|
|
||||
|
||||
public open fun setSize(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/TwoSetters|
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user