Regenerate test data

Add properties for Java annotations
This commit is contained in:
Denis Zharkov
2015-04-20 18:44:41 +03:00
parent 93bbd2cbbc
commit 6ca7d2aad7
66 changed files with 136 additions and 1 deletions
@@ -16,32 +16,39 @@ public trait AnnotationInParam {
public final annotation class MyAnnotation : kotlin.Annotation {
public constructor MyAnnotation(/*0*/ value: kotlin.String)
public final val value: kotlin.String
public abstract fun value(): kotlin.String
}
public final annotation class MyAnnotation2 : kotlin.Annotation {
public constructor MyAnnotation2(/*0*/ vararg value: kotlin.String /*kotlin.Array<out kotlin.String>*/)
public final val value: kotlin.Array<kotlin.String>
public abstract fun value(): kotlin.Array<kotlin.String>
}
public final annotation class MyAnnotation3 : kotlin.Annotation {
public constructor MyAnnotation3(/*0*/ first: kotlin.String, /*1*/ second: kotlin.String)
public final val first: kotlin.String
public final val second: kotlin.String
public abstract fun first(): kotlin.String
public abstract fun second(): kotlin.String
}
public final annotation class MyAnnotationWithParam : kotlin.Annotation {
public constructor MyAnnotationWithParam(/*0*/ value: test.AnnotationInParam.MyAnnotation)
public final val value: test.AnnotationInParam.MyAnnotation
public abstract fun value(): test.AnnotationInParam.MyAnnotation
}
public final annotation class MyAnnotationWithParam2 : kotlin.Annotation {
public constructor MyAnnotationWithParam2(/*0*/ value: test.AnnotationInParam.MyAnnotation2)
public final val value: test.AnnotationInParam.MyAnnotation2
public abstract fun value(): test.AnnotationInParam.MyAnnotation2
}
public final annotation class MyAnnotationWithParam3 : kotlin.Annotation {
public constructor MyAnnotationWithParam3(/*0*/ value: test.AnnotationInParam.MyAnnotation3)
public final val value: test.AnnotationInParam.MyAnnotation3
public abstract fun value(): test.AnnotationInParam.MyAnnotation3
}
}