Types are no more rendered for annotation arguments + a swarm of tests corrected accordingly

This commit is contained in:
Mikhail Glukhikh
2015-06-29 19:54:43 +03:00
parent dde295011b
commit bae9a7d7f8
213 changed files with 604 additions and 552 deletions
@@ -6,18 +6,18 @@ internal final annotation class Anno : kotlin.Annotation {
internal final fun <get-t>(): java.lang.annotation.ElementType
}
test.Anno(t = ElementType.METHOD: java.lang.annotation.ElementType) internal final class Class {
test.Anno(t = ElementType.METHOD) internal final class Class {
/*primary*/ public constructor Class()
test.Anno(t = ElementType.ANNOTATION_TYPE: java.lang.annotation.ElementType) public companion object Companion {
test.Anno(t = ElementType.ANNOTATION_TYPE) public companion object Companion {
/*primary*/ private constructor Companion()
}
test.Anno(t = ElementType.PARAMETER: java.lang.annotation.ElementType) internal final inner class Inner {
test.Anno(t = ElementType.PARAMETER) internal final inner class Inner {
/*primary*/ public constructor Inner()
}
test.Anno(t = ElementType.TYPE: java.lang.annotation.ElementType) internal final class Nested {
test.Anno(t = ElementType.TYPE) internal final class Nested {
/*primary*/ public constructor Nested()
}
}