Rendering changed: "annotation class" is now just "class" (with kotlin.annotation.annotation if it's kotlin annotation).

A swarm of tests fixed accordingly.
This commit is contained in:
Mikhail Glukhikh
2015-07-09 15:02:41 +03:00
parent 0d2a81f098
commit 37b2e97e56
236 changed files with 411 additions and 371 deletions
@@ -22,13 +22,13 @@ public open class EnumArgumentWithCustomToString {
public final /*synthesized*/ fun values(): kotlin.Array<test.EnumArgumentWithCustomToString.E>
}
public final annotation class EnumAnno : kotlin.Annotation {
public final class EnumAnno : kotlin.Annotation {
public constructor EnumAnno(/*0*/ value: test.EnumArgumentWithCustomToString.E)
public final val value: test.EnumArgumentWithCustomToString.E
public abstract fun value(): test.EnumArgumentWithCustomToString.E
}
public final annotation class EnumArrayAnno : kotlin.Annotation {
public final class EnumArrayAnno : kotlin.Annotation {
public constructor EnumArrayAnno(/*0*/ vararg value: test.EnumArgumentWithCustomToString.E /*kotlin.Array<out test.EnumArgumentWithCustomToString.E>*/)
public final val value: kotlin.Array<test.EnumArgumentWithCustomToString.E>
public abstract fun value(): kotlin.Array<test.EnumArgumentWithCustomToString.E>