Types are no more rendered for annotation arguments + a swarm of tests corrected accordingly
This commit is contained in:
@@ -3,15 +3,15 @@ package test
|
||||
internal final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
public enum entry ENTRY : test.MyEnum {
|
||||
private constructor ENTRY()
|
||||
kotlin.deprecated(value = "": kotlin.String) internal final /*fake_override*/ val ord: kotlin.Int
|
||||
kotlin.deprecated(value = "") internal final /*fake_override*/ val ord: kotlin.Int
|
||||
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
|
||||
internal final /*fake_override*/ fun f(/*0*/ java.lang.Deprecated() kotlin.Int): kotlin.Unit
|
||||
public final /*fake_override*/ fun name(): kotlin.String
|
||||
public final /*fake_override*/ fun ordinal(): kotlin.Int
|
||||
}
|
||||
|
||||
private constructor MyEnum(/*0*/ kotlin.deprecated(value = "": kotlin.String) kotlin.Int)
|
||||
kotlin.deprecated(value = "": kotlin.String) internal final val ord: kotlin.Int
|
||||
private constructor MyEnum(/*0*/ kotlin.deprecated(value = "") kotlin.Int)
|
||||
kotlin.deprecated(value = "") internal final val ord: kotlin.Int
|
||||
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
|
||||
internal final fun f(/*0*/ java.lang.Deprecated() kotlin.Int): kotlin.Unit
|
||||
public final /*fake_override*/ fun name(): kotlin.String
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
kotlin.platform.platformName(name = "bar": kotlin.String) internal fun foo(): kotlin.Unit
|
||||
kotlin.platform.platformName(name = "bar") internal fun foo(): kotlin.Unit
|
||||
|
||||
public open class PlatformName {
|
||||
public constructor PlatformName()
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ internal final annotation class AString : kotlin.Annotation {
|
||||
internal final val value: kotlin.String
|
||||
}
|
||||
|
||||
test.AString(value = "Test": kotlin.String) test.AChar(value = \u0063 ('c'): kotlin.Char) test.AInt(value = 10: kotlin.Int) test.AByte(value = 11: kotlin.Int) test.ALong(value = 12.toLong(): kotlin.Long) test.ADouble(value = 1.2.toDouble(): kotlin.Double) test.AFloat(value = 1.3.toFloat(): kotlin.Float) public open class AnnotationClass {
|
||||
test.AString(value = "Test") test.AChar(value = \u0063 ('c')) test.AInt(value = 10) test.AByte(value = 11) test.ALong(value = 12.toLong()) test.ADouble(value = 1.2.toDouble()) test.AFloat(value = 1.3.toFloat()) public open class AnnotationClass {
|
||||
public constructor AnnotationClass()
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ internal final annotation class AString : kotlin.Annotation {
|
||||
internal final val value: kotlin.String
|
||||
}
|
||||
|
||||
test.AString(value = "Test": kotlin.String) test.AChar(value = \u0063 ('c'): kotlin.Char) test.AInt(value = 10: kotlin.Int) test.AByte(value = 11: kotlin.Int) test.ALong(value = 12.toLong(): kotlin.Long) test.ADouble(value = 1.2.toDouble(): kotlin.Double) test.AFloat(value = 1.3.toFloat(): kotlin.Float) public open class AnnotationTrait {
|
||||
test.AString(value = "Test") test.AChar(value = \u0063 ('c')) test.AInt(value = 10) test.AByte(value = 11) test.ALong(value = 12.toLong()) test.ADouble(value = 1.2.toDouble()) test.AFloat(value = 1.3.toFloat()) public open class AnnotationTrait {
|
||||
public constructor AnnotationTrait()
|
||||
}
|
||||
|
||||
|
||||
@@ -19,5 +19,5 @@ public open class kt3698 {
|
||||
}
|
||||
|
||||
// Static members
|
||||
test.kt3698.Foo(value = 10: kotlin.Int) public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
test.kt3698.Foo(value = 10) public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user