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,11 +1,11 @@
package test
public /*synthesized*/ fun SamInterface(/*0*/ function: () -> jet.Unit): test.SamInterface
public fun topLevelFunction(): jet.Unit
public /*synthesized*/ fun SamInterface(/*0*/ function: () -> kotlin.Unit): test.SamInterface
public fun topLevelFunction(): kotlin.Unit
public open class JavaClass : java.lang.Object {
public constructor JavaClass()
public open fun instanceMethod(): jet.Unit
public open fun instanceMethod(): kotlin.Unit
}
public final class KotlinClass {
@@ -13,21 +13,21 @@ public final class KotlinClass {
}
public trait SamInterface : java.lang.Object {
public abstract fun instanceMethod(): jet.Unit
public abstract fun instanceMethod(): kotlin.Unit
}
package test.JavaClass {
public open fun staticMethod(): jet.Unit
public open fun staticMethod(): kotlin.Unit
}
package test.sub {
public open class JavaClassInSubpackage : java.lang.Object {
public constructor JavaClassInSubpackage()
public open fun instanceMethod(): jet.Unit
public open fun instanceMethod(): kotlin.Unit
}
package test.sub.JavaClassInSubpackage {
public open fun staticMethod(): jet.Unit
public open fun staticMethod(): kotlin.Unit
}
}