[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
@@ -0,0 +1 @@
|
||||
public final fun assert(): R|kotlin/Unit|
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
public final class B : R|test/X|, R|test/Y| {
|
||||
public open fun foo(): R|kotlin/Unit|
|
||||
|
||||
public final val a: R|test/X|
|
||||
public get(): R|test/X|
|
||||
|
||||
public constructor(a: R|test/X|): R|test/B|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface X : R|kotlin/Any| {
|
||||
public abstract fun foo(): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Y : R|test/X| {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
public final class Example : R|kotlin/Any| {
|
||||
public final infix fun test(other: R|test/Example|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/Example|
|
||||
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
public abstract interface Sub : R|test/Super1|, R|test/Super2| {
|
||||
}
|
||||
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
private final fun bar(): R|kotlin/String|
|
||||
|
||||
public abstract fun foo(): R|kotlin/CharSequence|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract fun bar(): R|kotlin/CharSequence|
|
||||
|
||||
private final fun foo(): R|kotlin/String|
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
public abstract interface Sub : R|test/Super1|, R|test/Super2| {
|
||||
}
|
||||
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract val x: R|kotlin/String|
|
||||
public get(): R|kotlin/String|
|
||||
|
||||
public abstract var y: R|kotlin/String|
|
||||
public get(): R|kotlin/String|
|
||||
public set(value: R|kotlin/String|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract var x: R|kotlin/String|
|
||||
public get(): R|kotlin/String|
|
||||
public set(value: R|kotlin/String|): R|kotlin/Unit|
|
||||
|
||||
public abstract val y: R|kotlin/String|
|
||||
public get(): R|kotlin/String|
|
||||
|
||||
}
|
||||
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
public abstract interface Sub : R|test/Super1|, R|test/Super2| {
|
||||
}
|
||||
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract val x: R|kotlin/String|
|
||||
public get(): R|kotlin/String|
|
||||
|
||||
public abstract val y: R|kotlin/CharSequence|
|
||||
public get(): R|kotlin/CharSequence|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract val x: R|kotlin/CharSequence|
|
||||
public get(): R|kotlin/CharSequence|
|
||||
|
||||
public abstract val y: R|kotlin/String|
|
||||
public get(): R|kotlin/String|
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
public final fun foo(r: R|java/lang/Runnable|): R|kotlin/Unit|
|
||||
|
||||
public abstract interface TaskObject : R|kotlin/Any| {
|
||||
public abstract fun foo(r: R|java/lang/Runnable|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public abstract interface Runnable : R|kotlin/Any| {
|
||||
public abstract fun run(): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public final class Example : R|kotlin/Any| {
|
||||
public final operator fun plus(other: R|test/Example|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/Example|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
public abstract interface A : R|kotlin/Any| {
|
||||
public open fun bar(): R|kotlin/Unit|
|
||||
|
||||
public open fun foo(): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public open class B : R|test/A| {
|
||||
public constructor(): R|test/B|
|
||||
|
||||
}
|
||||
|
||||
public final class C : R|test/B| {
|
||||
public open fun bar(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/C|
|
||||
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public final class PropagateSubclassOfComparable : R|kotlin/Comparable<test/PropagateSubclassOfComparable>| {
|
||||
public open operator fun compareTo(other: R|test/PropagateSubclassOfComparable|): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/PropagateSubclassOfComparable|
|
||||
|
||||
}
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
public final fun <T> f(): R|kotlin/Int|
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
public final fun <P> funParamParam(a: R|kotlin/Int|, b: R|P|): R|kotlin/Int|
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
public final fun <P> funParamParam(a: R|kotlin/Int|, b: R|P|): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun <P, Q : R|P|> funParamReferencesParam(): R|kotlin/Int|
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public final fun <T : R|test/Foo|, R|test/Bar|> foo(): R|kotlin/Unit|
|
||||
|
||||
public abstract interface Bar : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
public abstract interface Foo : R|kotlin/Any| {
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun <A : R|java/lang/Number|> uno(): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun <A : R|java/lang/Number|, R|java/io/Serializable|> tres(): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun <A : R|java/io/Serializable|> dos(): R|kotlin/Int|
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
public final fun <P> funParamVarargParam(a: R|kotlin/Int|, vararg b: R|kotlin/Array<out P>|): R|kotlin/Int|
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
public final fun <P, Q> funTwoTypeParams(): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun ff(p: R|kotlin/collections/List<kotlin/CharSequence>|): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun ff(p: R|kotlin/collections/List<java/lang/CharSequence?>|): R|kotlin/Int|
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
public final fun fff(a: R|java/lang/Integer?|): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun ffgg(): R|kotlin/collections/List<kotlin/CharSequence>|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun ffgg(): R|kotlin/collections/List<kotlin/CharSequence?>|
|
||||
@@ -0,0 +1,6 @@
|
||||
public final class River : R|kotlin/Any| {
|
||||
public final fun song(): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/River|
|
||||
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public final class ClassFunGetFoo : R|kotlin/Any| {
|
||||
public final fun getFoo(): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/ClassFunGetFoo|
|
||||
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public final class ClassFunGetFoo : R|kotlin/Any| {
|
||||
public final fun getFoo(): R|kotlin/Int|
|
||||
|
||||
public final fun setFoo(p: R|kotlin/Int|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/ClassFunGetFoo|
|
||||
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public final class ClassFunGetFoo : R|kotlin/Any| {
|
||||
public final fun set(p: R|kotlin/Int|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/ClassFunGetFoo|
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
public final fun R|kotlin/Int|.shuffle(): R|kotlin/Int|
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public final class ExtFunInClass : R|kotlin/Any| {
|
||||
public final fun R|kotlin/Int|.shuffle(): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/ExtFunInClass|
|
||||
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun funDefaultArg(p: R|kotlin/Int|, q: R|kotlin/Int| = STUB, r: R|kotlin/Int| = STUB): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun fff(a: R|java/lang/Integer|): R|kotlin/Int|
|
||||
@@ -0,0 +1 @@
|
||||
public final fun varargInt(a: R|kotlin/Int|, vararg b: R|kotlin/IntArray|): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun varargCharSequence(a: R|kotlin/Int|, vararg b: R|kotlin/Array<out java/lang/Integer>|): R|kotlin/Int|
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public abstract class ModifierAbstract : R|kotlin/Any| {
|
||||
public abstract fun abs(): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/ModifierAbstract|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public open class ModifierOpen : R|kotlin/Any| {
|
||||
public open fun abs(): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/ModifierOpen|
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
public final fun f(): R|kotlin/Int|
|
||||
@@ -0,0 +1 @@
|
||||
public final fun getFoo(): R|kotlin/Int|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun ff(): R|java/lang/Integer|
|
||||
+1
@@ -0,0 +1 @@
|
||||
public final fun ff(): R|java/lang/Integer?|
|
||||
@@ -0,0 +1,6 @@
|
||||
public open class VarargInt : R|kotlin/Any| {
|
||||
public open fun vararg(vararg p0: R|kotlin/IntArray|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/VarargInt|
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public open class VarargString : R|kotlin/Any| {
|
||||
public open fun vararg(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/VarargString|
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user