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
}