Replace "jet" package name with "kotlin" in testData
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user