Replace "jet" package name with "kotlin" in testData
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final annotation class Anno : jet.Annotation {
|
||||
internal final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final annotation class Anno : jet.Annotation {
|
||||
internal final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -8,8 +8,8 @@ internal final class A {
|
||||
|
||||
internal class object <class-object-for-B> {
|
||||
/*primary*/ private constructor <class-object-for-B>()
|
||||
internal final val TEST: jet.Int
|
||||
internal final fun <get-TEST>(): jet.Int
|
||||
internal final val TEST: kotlin.Int
|
||||
internal final fun <get-TEST>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
package test
|
||||
|
||||
jet.deprecated(value = "Class": jet.String) internal final class Class {
|
||||
kotlin.deprecated(value = "Class": kotlin.String) internal final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
|
||||
jet.deprecated(value = "class object": jet.String) internal class object <class-object-for-Class> {
|
||||
kotlin.deprecated(value = "class object": kotlin.String) internal class object <class-object-for-Class> {
|
||||
/*primary*/ private constructor <class-object-for-Class>()
|
||||
}
|
||||
|
||||
jet.deprecated(value = "Inner": jet.String) internal final inner class Inner {
|
||||
kotlin.deprecated(value = "Inner": kotlin.String) internal final inner class Inner {
|
||||
/*primary*/ public constructor Inner()
|
||||
}
|
||||
|
||||
jet.deprecated(value = "Nested": jet.String) internal final class Nested {
|
||||
kotlin.deprecated(value = "Nested": kotlin.String) internal final class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final annotation class Anno : jet.Annotation {
|
||||
internal final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno(/*0*/ t: java.lang.annotation.ElementType)
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,14 +1,14 @@
|
||||
package test
|
||||
|
||||
internal final annotation class A1 : jet.Annotation {
|
||||
internal final annotation class A1 : kotlin.Annotation {
|
||||
/*primary*/ public constructor A1()
|
||||
}
|
||||
|
||||
internal final annotation class A2 : jet.Annotation {
|
||||
internal final annotation class A2 : kotlin.Annotation {
|
||||
/*primary*/ public constructor A2()
|
||||
}
|
||||
|
||||
internal final annotation class A3 : jet.Annotation {
|
||||
internal final annotation class A3 : kotlin.Annotation {
|
||||
/*primary*/ public constructor A3()
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final annotation class Anno : jet.Annotation {
|
||||
internal final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
java.lang.annotation.Retention(value = RetentionPolicy.RUNTIME: java.lang.annotation.RetentionPolicy) internal final annotation class Anno : jet.Annotation {
|
||||
java.lang.annotation.Retention(value = RetentionPolicy.RUNTIME: java.lang.annotation.RetentionPolicy) internal final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final annotation class Anno : jet.Annotation {
|
||||
internal final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
|
||||
@@ -1,53 +1,53 @@
|
||||
package test
|
||||
|
||||
internal final annotation class BooleanAnno : jet.Annotation {
|
||||
/*primary*/ public constructor BooleanAnno(/*0*/ value: jet.Boolean)
|
||||
internal final val value: jet.Boolean
|
||||
internal final fun <get-value>(): jet.Boolean
|
||||
internal final annotation class BooleanAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor BooleanAnno(/*0*/ value: kotlin.Boolean)
|
||||
internal final val value: kotlin.Boolean
|
||||
internal final fun <get-value>(): kotlin.Boolean
|
||||
}
|
||||
|
||||
internal final annotation class ByteAnno : jet.Annotation {
|
||||
/*primary*/ public constructor ByteAnno(/*0*/ value: jet.Byte)
|
||||
internal final val value: jet.Byte
|
||||
internal final fun <get-value>(): jet.Byte
|
||||
internal final annotation class ByteAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor ByteAnno(/*0*/ value: kotlin.Byte)
|
||||
internal final val value: kotlin.Byte
|
||||
internal final fun <get-value>(): kotlin.Byte
|
||||
}
|
||||
|
||||
internal final annotation class CharAnno : jet.Annotation {
|
||||
/*primary*/ public constructor CharAnno(/*0*/ value: jet.Char)
|
||||
internal final val value: jet.Char
|
||||
internal final fun <get-value>(): jet.Char
|
||||
internal final annotation class CharAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor CharAnno(/*0*/ value: kotlin.Char)
|
||||
internal final val value: kotlin.Char
|
||||
internal final fun <get-value>(): kotlin.Char
|
||||
}
|
||||
|
||||
test.IntAnno(value = 42.toInt(): jet.Int) test.ShortAnno(value = 42.toShort(): jet.Short) test.ByteAnno(value = 42.toByte(): jet.Byte) test.LongAnno(value = 42.toLong(): jet.Long) test.CharAnno(value = #65(A): jet.Char) test.BooleanAnno(value = false: jet.Boolean) test.FloatAnno(value = 3.14.toFloat(): jet.Float) test.DoubleAnno(value = 3.14.toDouble(): jet.Double) internal final class Class {
|
||||
test.IntAnno(value = 42.toInt(): kotlin.Int) test.ShortAnno(value = 42.toShort(): kotlin.Short) test.ByteAnno(value = 42.toByte(): kotlin.Byte) test.LongAnno(value = 42.toLong(): kotlin.Long) test.CharAnno(value = #65(A): kotlin.Char) test.BooleanAnno(value = false: kotlin.Boolean) test.FloatAnno(value = 3.14.toFloat(): kotlin.Float) test.DoubleAnno(value = 3.14.toDouble(): kotlin.Double) internal final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
}
|
||||
|
||||
internal final annotation class DoubleAnno : jet.Annotation {
|
||||
/*primary*/ public constructor DoubleAnno(/*0*/ value: jet.Double)
|
||||
internal final val value: jet.Double
|
||||
internal final fun <get-value>(): jet.Double
|
||||
internal final annotation class DoubleAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor DoubleAnno(/*0*/ value: kotlin.Double)
|
||||
internal final val value: kotlin.Double
|
||||
internal final fun <get-value>(): kotlin.Double
|
||||
}
|
||||
|
||||
internal final annotation class FloatAnno : jet.Annotation {
|
||||
/*primary*/ public constructor FloatAnno(/*0*/ value: jet.Float)
|
||||
internal final val value: jet.Float
|
||||
internal final fun <get-value>(): jet.Float
|
||||
internal final annotation class FloatAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor FloatAnno(/*0*/ value: kotlin.Float)
|
||||
internal final val value: kotlin.Float
|
||||
internal final fun <get-value>(): kotlin.Float
|
||||
}
|
||||
|
||||
internal final annotation class IntAnno : jet.Annotation {
|
||||
/*primary*/ public constructor IntAnno(/*0*/ value: jet.Int)
|
||||
internal final val value: jet.Int
|
||||
internal final fun <get-value>(): jet.Int
|
||||
internal final annotation class IntAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor IntAnno(/*0*/ value: kotlin.Int)
|
||||
internal final val value: kotlin.Int
|
||||
internal final fun <get-value>(): kotlin.Int
|
||||
}
|
||||
|
||||
internal final annotation class LongAnno : jet.Annotation {
|
||||
/*primary*/ public constructor LongAnno(/*0*/ value: jet.Long)
|
||||
internal final val value: jet.Long
|
||||
internal final fun <get-value>(): jet.Long
|
||||
internal final annotation class LongAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor LongAnno(/*0*/ value: kotlin.Long)
|
||||
internal final val value: kotlin.Long
|
||||
internal final fun <get-value>(): kotlin.Long
|
||||
}
|
||||
|
||||
internal final annotation class ShortAnno : jet.Annotation {
|
||||
/*primary*/ public constructor ShortAnno(/*0*/ value: jet.Short)
|
||||
internal final val value: jet.Short
|
||||
internal final fun <get-value>(): jet.Short
|
||||
internal final annotation class ShortAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor ShortAnno(/*0*/ value: kotlin.Short)
|
||||
internal final val value: kotlin.Short
|
||||
internal final fun <get-value>(): kotlin.Short
|
||||
}
|
||||
|
||||
+9
-9
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
internal final annotation class Anno : jet.Annotation {
|
||||
/*primary*/ public constructor Anno(/*0*/ int: jet.Int, /*1*/ string: jet.String, /*2*/ double: jet.Double)
|
||||
internal final val double: jet.Double
|
||||
internal final fun <get-double>(): jet.Double
|
||||
internal final val int: jet.Int
|
||||
internal final fun <get-int>(): jet.Int
|
||||
internal final val string: jet.String
|
||||
internal final fun <get-string>(): jet.String
|
||||
internal final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno(/*0*/ int: kotlin.Int, /*1*/ string: kotlin.String, /*2*/ double: kotlin.Double)
|
||||
internal final val double: kotlin.Double
|
||||
internal final fun <get-double>(): kotlin.Double
|
||||
internal final val int: kotlin.Int
|
||||
internal final fun <get-int>(): kotlin.Int
|
||||
internal final val string: kotlin.String
|
||||
internal final fun <get-string>(): kotlin.String
|
||||
}
|
||||
|
||||
test.Anno(double = 3.14.toDouble(): jet.Double, int = 42.toInt(): jet.Int, string = "OK": jet.String) internal final class Class {
|
||||
test.Anno(double = 3.14.toDouble(): kotlin.Double, int = 42.toInt(): kotlin.Int, string = "OK": kotlin.String) internal final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user