FIR: dump nested classes in loadJava tests

Because those test are single Java files, many of them use a top-level
class as a container for multiple classes to be tested. Such tests do
almost nothing if those nested classes aren't handled.
This commit is contained in:
pyos
2021-08-14 11:12:28 +02:00
committed by TeamCityServer
parent c2b575505a
commit a12e31daf1
149 changed files with 1787 additions and 16 deletions
@@ -1,2 +1,38 @@
public abstract interface AnnotationInParam : R|kotlin/Any| {
@R|test/AnnotationInParam.MyAnnotationWithParam|(@R|test/AnnotationInParam.MyAnnotation|(String(test)) ) public open class A : R|kotlin/Any| {
public constructor(): R|test/AnnotationInParam.A|
}
@R|test/AnnotationInParam.MyAnnotationWithParam2|(@R|test/AnnotationInParam.MyAnnotation2|(<implicitArrayOf>(String(test), String(test2))) ) public open class B : R|kotlin/Any| {
public constructor(): R|test/AnnotationInParam.B|
}
@R|test/AnnotationInParam.MyAnnotationWithParam3|(@R|test/AnnotationInParam.MyAnnotation3|(String(f), String(s)) ) public open class C : R|kotlin/Any| {
public constructor(): R|test/AnnotationInParam.C|
}
public final annotation class MyAnnotation : R|kotlin/Annotation| {
public constructor(value: R|kotlin/String|): R|test/AnnotationInParam.MyAnnotation|
}
public final annotation class MyAnnotation2 : R|kotlin/Annotation| {
public constructor(vararg value: R|kotlin/Array<kotlin/String>|): R|test/AnnotationInParam.MyAnnotation2|
}
public final annotation class MyAnnotation3 : R|kotlin/Annotation| {
public constructor(first: R|kotlin/String|, second: R|kotlin/String|): R|test/AnnotationInParam.MyAnnotation3|
}
public final annotation class MyAnnotationWithParam : R|kotlin/Annotation| {
public constructor(value: R|test/AnnotationInParam.MyAnnotation|): R|test/AnnotationInParam.MyAnnotationWithParam|
}
public final annotation class MyAnnotationWithParam2 : R|kotlin/Annotation| {
public constructor(value: R|test/AnnotationInParam.MyAnnotation2|): R|test/AnnotationInParam.MyAnnotationWithParam2|
}
public final annotation class MyAnnotationWithParam3 : R|kotlin/Annotation| {
public constructor(value: R|test/AnnotationInParam.MyAnnotation3|): R|test/AnnotationInParam.MyAnnotationWithParam3|
}
}