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,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
}