[FE Test] Move FIR dumps for LoadCompiledKotlin tests close to original testdata

This commit is contained in:
Dmitriy Novozhilov
2023-04-17 12:24:15 +03:00
committed by Space Team
parent de33a21fd1
commit e94a64a4f2
474 changed files with 0 additions and 0 deletions
@@ -0,0 +1,4 @@
public final class ClassWithConstructor0 : R|kotlin/Any| {
public constructor(): R|test/ClassWithConstructor0|
}
@@ -0,0 +1,4 @@
public final class ClassWithConstructor1 : R|kotlin/Any| {
public constructor(p: R|kotlin/Int|): R|test/ClassWithConstructor1|
}
@@ -0,0 +1,4 @@
public final class ClassWithConstructorWithValueParamWithDefaultValue : R|kotlin/Any| {
public constructor(p: R|kotlin/Int| = STUB): R|test/ClassWithConstructorWithValueParamWithDefaultValue|
}
@@ -0,0 +1,4 @@
public final class TestConstructor : R|kotlin/Any| {
public constructor(p: R|kotlin/Int| = STUB, s: R|kotlin/Int|): R|test/TestConstructor|
}
@@ -0,0 +1,7 @@
public final class TestingKotlinCollections : R|kotlin/Any| {
public final val arguments: R|kotlin/collections/Collection<kotlin/String>|
public get(): R|kotlin/collections/Collection<kotlin/String>|
public constructor(arguments: R|kotlin/collections/Collection<kotlin/String>|): R|test/TestingKotlinCollections|
}
@@ -0,0 +1,4 @@
public open class ConstructorGenericDeep : R|kotlin/Any| {
public constructor(p0: R|java/lang/Class<kotlin/Any?>?|): R|test/ConstructorGenericDeep|
}
@@ -0,0 +1,4 @@
public open class ConstructorGenericSimple : R|kotlin/Any| {
public constructor(p0: R|kotlin/Any?|): R|test/ConstructorGenericSimple|
}
@@ -0,0 +1,4 @@
public open class ConstructorGenericUpperBound : R|kotlin/Any| {
public constructor(p0: R|java/util/RandomAccess?|): R|test/ConstructorGenericUpperBound|
}
@@ -0,0 +1,4 @@
public final class TestConstructor : R|kotlin/Any| {
public constructor(p: R|kotlin/Int| = STUB, d: R|kotlin/Int| = STUB): R|test/TestConstructor|
}
@@ -0,0 +1,4 @@
public final class ClassWithConstructorAndTypeParameter<P, Q> : R|kotlin/Any| {
public constructor<P, Q>(): R|test/ClassWithConstructorAndTypeParameter<P, Q>|
}
@@ -0,0 +1,4 @@
public final class ClassWithConstructorAndTypeParameter<P, Q> : R|kotlin/Any| {
public constructor<P, Q>(q: R|kotlin/Int|): R|test/ClassWithConstructorAndTypeParameter<P, Q>|
}
@@ -0,0 +1,4 @@
public final class ClassWithConstructorAndTypeParameter<P, Q> : R|kotlin/Any| {
public constructor<P, Q>(q: R|Q|): R|test/ClassWithConstructorAndTypeParameter<P, Q>|
}
@@ -0,0 +1,4 @@
public final class ClassWithConstructorAndTypeParameter<P> : R|kotlin/Any| {
public constructor<P>(): R|test/ClassWithConstructorAndTypeParameter<P>|
}
@@ -0,0 +1,4 @@
public final class OneTypeParameterErased<P, Q> : R|kotlin/Any| {
public constructor<P, Q>(q: R|Q|): R|test/OneTypeParameterErased<P, Q>|
}
@@ -0,0 +1,10 @@
public final class A : R|kotlin/Any| {
public constructor(): R|test/A|
public final class TestConstructor : R|kotlin/Any| {
public constructor(p: R|kotlin/Int| = STUB): R|test/A.TestConstructor|
}
}
@@ -0,0 +1,4 @@
public final class TestConstructor : R|kotlin/Any| {
private constructor(p: R|kotlin/Int| = STUB): R|test/TestConstructor|
}
@@ -0,0 +1,4 @@
public final class A : R|kotlin/Any| {
public constructor(vararg a: R|kotlin/IntArray|, f: R|() -> kotlin/Unit|): R|test/A|
}
@@ -0,0 +1,4 @@
public final class A : R|kotlin/Any| {
public constructor(vararg a: R|kotlin/IntArray|): R|test/A|
}