[FIR] Fix all usages of annotations due to new FirAnnotation hierarchy

This commit is contained in:
Dmitriy Novozhilov
2021-09-07 17:40:40 +03:00
committed by teamcityserver
parent 2e7564a21e
commit 5769d42248
133 changed files with 742 additions and 325 deletions
@@ -1,13 +1,13 @@
public abstract interface AnnotationInParam : R|kotlin/Any| {
@R|test/AnnotationInParam.MyAnnotationWithParam|(@R|test/AnnotationInParam.MyAnnotation|(String(test)) ) public open class A : R|kotlin/Any| {
@R|test/AnnotationInParam.MyAnnotationWithParam|(value = @R|test/AnnotationInParam.MyAnnotation|(value = 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| {
@R|test/AnnotationInParam.MyAnnotationWithParam2|(value = @R|test/AnnotationInParam.MyAnnotation2|(value = <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| {
@R|test/AnnotationInParam.MyAnnotationWithParam3|(value = @R|test/AnnotationInParam.MyAnnotation3|(first = String(f), second = String(s)) ) public open class C : R|kotlin/Any| {
public constructor(): R|test/AnnotationInParam.C|
}