Replace "jet" package name with "kotlin" in testData

This commit is contained in:
Alexander Udalov
2014-02-21 23:29:57 +04:00
parent f2b4c7fa3e
commit f7b6457139
763 changed files with 2314 additions and 2310 deletions
@@ -1,6 +1,6 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -9,8 +9,8 @@ internal final class Class {
internal class object <class-object-for-Class> {
/*primary*/ private constructor <class-object-for-Class>()
test.Anno() internal final var property: jet.Int
internal final fun <get-property>(): jet.Int
internal final fun <set-property>(/*0*/ <set-?>: jet.Int): jet.Unit
test.Anno() internal final var property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
internal final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
}
}
@@ -1,11 +1,11 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
test.Anno() internal final val x: jet.Int
internal final fun <get-x>(): jet.Int
test.Anno() internal final val x: kotlin.Int
internal final fun <get-x>(): kotlin.Int
}
@@ -1,13 +1,13 @@
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)
}
internal final class Class {
/*primary*/ public constructor Class()
test.Anno(t = ElementType.FIELD: java.lang.annotation.ElementType) internal final var bar: jet.Int
internal final fun <get-bar>(): jet.Int
internal final fun <set-bar>(/*0*/ <set-?>: jet.Int): jet.Unit
test.Anno(t = ElementType.METHOD: java.lang.annotation.ElementType) internal final fun foo(): jet.Unit
test.Anno(t = ElementType.FIELD: java.lang.annotation.ElementType) internal final var bar: kotlin.Int
internal final fun <get-bar>(): kotlin.Int
internal final fun <set-bar>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
test.Anno(t = ElementType.METHOD: java.lang.annotation.ElementType) internal final fun foo(): kotlin.Unit
}
@@ -1,10 +1,10 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
test.Anno() internal final fun foo(): jet.Unit
test.Anno() internal final fun foo(): kotlin.Unit
}
@@ -1,11 +1,11 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
internal final val property: jet.Int
test.Anno() internal final fun <get-property>(): jet.Int
internal final val property: kotlin.Int
test.Anno() internal final fun <get-property>(): kotlin.Int
}
@@ -1,12 +1,12 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
test.Anno() internal final var property: jet.Int
internal final fun <get-property>(): jet.Int
internal final fun <set-property>(/*0*/ <set-?>: jet.Int): jet.Unit
test.Anno() internal final var property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
internal final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
}
@@ -1,12 +1,12 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
internal final var property: jet.Int
internal final fun <get-property>(): jet.Int
test.Anno() internal final fun <set-property>(/*0*/ value: jet.Int): jet.Unit
internal final var property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
test.Anno() internal final fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
}
@@ -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()
}
@@ -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)
}
@@ -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
}
@@ -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()
}
@@ -1,8 +1,8 @@
package test
test.Anno() internal val x: jet.Int
internal fun <get-x>(): jet.Int
test.Anno() internal val x: kotlin.Int
internal fun <get-x>(): kotlin.Int
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,9 +1,9 @@
package test
test.Anno(t = ElementType.FIELD: java.lang.annotation.ElementType) internal val bar: jet.Int
internal fun <get-bar>(): jet.Int
test.Anno(t = ElementType.METHOD: java.lang.annotation.ElementType) internal fun foo(): jet.Unit
test.Anno(t = ElementType.FIELD: java.lang.annotation.ElementType) internal val bar: kotlin.Int
internal fun <get-bar>(): kotlin.Int
test.Anno(t = ElementType.METHOD: java.lang.annotation.ElementType) internal fun foo(): kotlin.Unit
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno(/*0*/ t: java.lang.annotation.ElementType)
}
@@ -1,7 +1,7 @@
package test
test.Anno() internal fun function(): jet.Unit
test.Anno() internal fun function(): kotlin.Unit
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,8 +1,8 @@
package test
internal val property: jet.Int
test.Anno() internal fun <get-property>(): jet.Int
internal val property: kotlin.Int
test.Anno() internal fun <get-property>(): kotlin.Int
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,9 +1,9 @@
package test
test.Anno() internal var property: jet.Int
internal fun <get-property>(): jet.Int
internal fun <set-property>(/*0*/ <set-?>: jet.Int): jet.Unit
test.Anno() internal var property: kotlin.Int
internal fun <get-property>(): kotlin.Int
internal fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,9 +1,9 @@
package test
internal var property: jet.Int
internal fun <get-property>(): jet.Int
test.Anno() internal fun <set-property>(/*0*/ value: jet.Int): jet.Unit
internal var property: kotlin.Int
internal fun <get-property>(): kotlin.Int
test.Anno() internal fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,15 +1,15 @@
package test
internal final annotation class A : jet.Annotation {
internal final annotation class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
internal final annotation class B : jet.Annotation {
internal final annotation class B : kotlin.Annotation {
/*primary*/ public constructor B()
}
internal final class Class {
/*primary*/ public constructor Class(/*0*/ test.A() x: jet.Int, /*1*/ test.B() y: jet.String)
test.A() internal final val x: jet.Int
internal final fun <get-x>(): jet.Int
/*primary*/ public constructor Class(/*0*/ test.A() x: kotlin.Int, /*1*/ test.B() y: kotlin.String)
test.A() internal final val x: kotlin.Int
internal final fun <get-x>(): kotlin.Int
}
@@ -1,25 +1,25 @@
package test
internal final annotation class A : jet.Annotation {
internal final annotation class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
internal final annotation class B : jet.Annotation {
internal final annotation class B : kotlin.Annotation {
/*primary*/ public constructor B()
}
internal final enum class E : jet.Enum<test.E> {
/*primary*/ private constructor E(/*0*/ test.A() x: jet.String, /*1*/ test.B() y: jet.Int)
test.A() internal final val x: jet.String
internal final fun <get-x>(): jet.String
test.B() internal final val y: jet.Int
internal final fun <get-y>(): jet.Int
public final override /*1*/ /*fake_override*/ fun name(): jet.String
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
internal final enum class E : kotlin.Enum<test.E> {
/*primary*/ private constructor E(/*0*/ test.A() x: kotlin.String, /*1*/ test.B() y: kotlin.Int)
test.A() internal final val x: kotlin.String
internal final fun <get-x>(): kotlin.String
test.B() internal final val y: kotlin.Int
internal final fun <get-y>(): kotlin.Int
public final override /*1*/ /*fake_override*/ fun name(): kotlin.String
public final override /*1*/ /*fake_override*/ fun ordinal(): kotlin.Int
public class object <class-object-for-E> {
/*primary*/ private constructor <class-object-for-E>()
public final /*synthesized*/ fun valueOf(/*0*/ value: jet.String): test.E
public final /*synthesized*/ fun values(): jet.Array<test.E>
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): test.E
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
}
}
@@ -1,7 +1,7 @@
package test
internal fun jet.Int.foo(/*0*/ test.A() x: jet.Int): jet.Unit
internal fun kotlin.Int.foo(/*0*/ test.A() x: kotlin.Int): kotlin.Unit
internal final annotation class A : jet.Annotation {
internal final annotation class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
@@ -1,10 +1,10 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
internal final fun jet.String.foo(/*0*/ test.Anno() x: jet.Int): jet.Int
internal final fun kotlin.String.foo(/*0*/ test.Anno() x: kotlin.Int): kotlin.Int
}
@@ -1,12 +1,12 @@
package test
internal final annotation class A : jet.Annotation {
internal final annotation class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
internal final class Class {
/*primary*/ public constructor Class()
internal final var jet.Int.foo: jet.Int
internal final fun jet.Int.<get-foo>(): jet.Int
internal final fun jet.Int.<set-foo>(/*0*/ test.A() value: jet.Int): jet.Unit
internal final var kotlin.Int.foo: kotlin.Int
internal final fun kotlin.Int.<get-foo>(): kotlin.Int
internal final fun kotlin.Int.<set-foo>(/*0*/ test.A() value: kotlin.Int): kotlin.Unit
}
@@ -1,10 +1,10 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
internal final fun foo(/*0*/ test.Anno() x: jet.String): jet.Unit
internal final fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Unit
}
@@ -1,9 +1,9 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal trait Trait {
internal open fun foo(/*0*/ test.Anno() x: jet.String): jet.Int
internal open fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Int
}
@@ -1,20 +1,20 @@
package test
internal fun bar(/*0*/ test.A() test.B() test.C() test.D() x: jet.Int): jet.Unit
internal fun foo(/*0*/ test.A() test.B() x: jet.Int, /*1*/ test.A() test.C() y: jet.Double, /*2*/ test.B() test.C() test.D() z: jet.String): jet.Unit
internal fun bar(/*0*/ test.A() test.B() test.C() test.D() x: kotlin.Int): kotlin.Unit
internal fun foo(/*0*/ test.A() test.B() x: kotlin.Int, /*1*/ test.A() test.C() y: kotlin.Double, /*2*/ test.B() test.C() test.D() z: kotlin.String): kotlin.Unit
internal final annotation class A : jet.Annotation {
internal final annotation class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
internal final annotation class B : jet.Annotation {
internal final annotation class B : kotlin.Annotation {
/*primary*/ public constructor B()
}
internal final annotation class C : jet.Annotation {
internal final annotation class C : kotlin.Annotation {
/*primary*/ public constructor C()
}
internal final annotation class D : jet.Annotation {
internal final annotation class D : kotlin.Annotation {
/*primary*/ public constructor D()
}
@@ -1,12 +1,12 @@
package test
internal final annotation class A : jet.Annotation {
internal final annotation class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
internal final class Class {
/*primary*/ public constructor Class()
internal final var foo: jet.Int
internal final fun <get-foo>(): jet.Int
internal final fun <set-foo>(/*0*/ test.A() value: jet.Int): jet.Unit
internal final var foo: kotlin.Int
internal final fun <get-foo>(): kotlin.Int
internal final fun <set-foo>(/*0*/ test.A() value: kotlin.Int): kotlin.Unit
}
@@ -1,7 +1,7 @@
package test
internal fun foo(/*0*/ test.Anno() x: jet.Int): jet.Unit
internal fun foo(/*0*/ test.Anno() x: kotlin.Int): kotlin.Unit
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,13 +1,13 @@
package test
internal var foo: jet.Int
internal fun <get-foo>(): jet.Int
internal fun <set-foo>(/*0*/ test.A() test.B() value: jet.Int): jet.Unit
internal var foo: kotlin.Int
internal fun <get-foo>(): kotlin.Int
internal fun <set-foo>(/*0*/ test.A() test.B() value: kotlin.Int): kotlin.Unit
internal final annotation class A : jet.Annotation {
internal final annotation class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
internal final annotation class B : jet.Annotation {
internal final annotation class B : kotlin.Annotation {
/*primary*/ public constructor B()
}
@@ -1,11 +1,11 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal final class Class {
/*primary*/ public constructor Class()
test.Anno() internal final val property: jet.Int
internal final fun <get-property>(): jet.Int
test.Anno() internal final val property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
}
@@ -1,6 +1,6 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -9,7 +9,7 @@ internal final class Class {
internal class object <class-object-for-Class> {
/*primary*/ private constructor <class-object-for-Class>()
test.Anno() internal final val property: jet.Int
internal final fun <get-property>(): jet.Int
test.Anno() internal final val property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
}
}
@@ -2,22 +2,22 @@ package test
internal final class Class {
/*primary*/ public constructor Class()
test.DoubleAnno() internal final val jet.Double.extension: jet.Int
internal final fun jet.Double.<get-extension>(): jet.Int
test.IntAnno() internal final val jet.Int.extension: jet.Int
internal final fun jet.Int.<get-extension>(): jet.Int
test.StringAnno() internal final val jet.String.extension: jet.String
internal final fun jet.String.<get-extension>(): jet.String
test.DoubleAnno() internal final val kotlin.Double.extension: kotlin.Int
internal final fun kotlin.Double.<get-extension>(): kotlin.Int
test.IntAnno() internal final val kotlin.Int.extension: kotlin.Int
internal final fun kotlin.Int.<get-extension>(): kotlin.Int
test.StringAnno() internal final val kotlin.String.extension: kotlin.String
internal final fun kotlin.String.<get-extension>(): kotlin.String
}
internal final annotation class DoubleAnno : jet.Annotation {
internal final annotation class DoubleAnno : kotlin.Annotation {
/*primary*/ public constructor DoubleAnno()
}
internal final annotation class IntAnno : jet.Annotation {
internal final annotation class IntAnno : kotlin.Annotation {
/*primary*/ public constructor IntAnno()
}
internal final annotation class StringAnno : jet.Annotation {
internal final annotation class StringAnno : kotlin.Annotation {
/*primary*/ public constructor StringAnno()
}
@@ -1,20 +1,20 @@
package test
test.DoubleAnno() internal val jet.Double.extension: jet.Int
internal fun jet.Double.<get-extension>(): jet.Int
test.IntAnno() internal val jet.Int.extension: jet.Int
internal fun jet.Int.<get-extension>(): jet.Int
test.StringAnno() internal val jet.String.extension: jet.String
internal fun jet.String.<get-extension>(): jet.String
test.DoubleAnno() internal val kotlin.Double.extension: kotlin.Int
internal fun kotlin.Double.<get-extension>(): kotlin.Int
test.IntAnno() internal val kotlin.Int.extension: kotlin.Int
internal fun kotlin.Int.<get-extension>(): kotlin.Int
test.StringAnno() internal val kotlin.String.extension: kotlin.String
internal fun kotlin.String.<get-extension>(): kotlin.String
internal final annotation class DoubleAnno : jet.Annotation {
internal final annotation class DoubleAnno : kotlin.Annotation {
/*primary*/ public constructor DoubleAnno()
}
internal final annotation class IntAnno : jet.Annotation {
internal final annotation class IntAnno : kotlin.Annotation {
/*primary*/ public constructor IntAnno()
}
internal final annotation class StringAnno : jet.Annotation {
internal final annotation class StringAnno : kotlin.Annotation {
/*primary*/ public constructor StringAnno()
}
@@ -1,6 +1,6 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -8,7 +8,7 @@ internal final class Class {
/*primary*/ public constructor Class()
internal trait Trait {
test.Anno() internal abstract val property: jet.Int
internal abstract fun <get-property>(): jet.Int
test.Anno() internal abstract val property: kotlin.Int
internal abstract fun <get-property>(): kotlin.Int
}
}
@@ -1,8 +1,8 @@
package test
test.Anno() internal val property: jet.Int
internal fun <get-property>(): jet.Int
test.Anno() internal val property: kotlin.Int
internal fun <get-property>(): kotlin.Int
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,10 +1,10 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
internal trait Trait {
test.Anno() internal abstract val property: jet.Int
internal abstract fun <get-property>(): jet.Int
test.Anno() internal abstract val property: kotlin.Int
internal abstract fun <get-property>(): kotlin.Int
}
@@ -1,6 +1,6 @@
package test
internal final annotation class Anno : jet.Annotation {
internal final annotation class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -8,7 +8,7 @@ internal trait Trait {
internal class object <class-object-for-Trait> {
/*primary*/ private constructor <class-object-for-Trait>()
test.Anno() internal final val property: jet.Int
internal final fun <get-property>(): jet.Int
test.Anno() internal final val property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
}
}