Replace "jet" package name with "kotlin" in testData
This commit is contained in:
@@ -5,7 +5,7 @@ internal final class ClassObjectDeclaresProperty {
|
||||
|
||||
internal class object <class-object-for-ClassObjectDeclaresProperty> {
|
||||
/*primary*/ private constructor <class-object-for-ClassObjectDeclaresProperty>()
|
||||
internal final val i: jet.Int
|
||||
internal final fun <get-i>(): jet.Int
|
||||
internal final val i: kotlin.Int
|
||||
internal final fun <get-i>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,8 +5,8 @@ internal final class ClassObjectDeclaresProperty {
|
||||
|
||||
internal class object <class-object-for-ClassObjectDeclaresProperty> {
|
||||
/*primary*/ private constructor <class-object-for-ClassObjectDeclaresProperty>()
|
||||
internal final var s: jet.String
|
||||
internal final fun <get-s>(): jet.String
|
||||
internal final fun <set-s>(/*0*/ <set-?>: jet.String): jet.Unit
|
||||
internal final var s: kotlin.String
|
||||
internal final fun <get-s>(): kotlin.String
|
||||
internal final fun <set-s>(/*0*/ <set-?>: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ internal trait Bbb</*0*/ P> {
|
||||
internal final class ClassObjectExtendsTraitWithTP {
|
||||
/*primary*/ public constructor ClassObjectExtendsTraitWithTP()
|
||||
|
||||
internal class object <class-object-for-ClassObjectExtendsTraitWithTP> : test.Bbb<jet.String> {
|
||||
internal class object <class-object-for-ClassObjectExtendsTraitWithTP> : test.Bbb<kotlin.String> {
|
||||
/*primary*/ private constructor <class-object-for-ClassObjectExtendsTraitWithTP>()
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -2,12 +2,12 @@ package test
|
||||
|
||||
internal final class A {
|
||||
/*primary*/ public constructor A()
|
||||
internal final val other: jet.Int
|
||||
internal final fun <get-other>(): jet.Int
|
||||
internal final val other: kotlin.Int
|
||||
internal final fun <get-other>(): kotlin.Int
|
||||
|
||||
internal class object <class-object-for-A> {
|
||||
/*primary*/ private constructor <class-object-for-A>()
|
||||
internal final val some: jet.Int
|
||||
internal final fun <get-some>(): jet.Int
|
||||
internal final val some: kotlin.Int
|
||||
internal final fun <get-some>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,14 +2,14 @@ package test
|
||||
|
||||
internal final class A : test.T {
|
||||
/*primary*/ public constructor A()
|
||||
internal open override /*1*/ fun foo(): jet.Int
|
||||
internal open override /*1*/ fun foo(): kotlin.Int
|
||||
|
||||
internal class object <class-object-for-A> : test.T {
|
||||
/*primary*/ private constructor <class-object-for-A>()
|
||||
internal open override /*1*/ /*delegation*/ fun foo(): jet.Int
|
||||
internal open override /*1*/ /*delegation*/ fun foo(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
internal trait T {
|
||||
internal abstract fun foo(): jet.Int
|
||||
internal abstract fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
@@ -5,8 +5,8 @@ internal final class TestFirst {
|
||||
|
||||
internal class object <class-object-for-TestFirst> {
|
||||
/*primary*/ private constructor <class-object-for-TestFirst>()
|
||||
internal final fun testing(/*0*/ a: test.TestFirst.InnerClass): jet.Int
|
||||
internal final fun testing(/*0*/ a: test.TestFirst.NotInnerClass): jet.Int
|
||||
internal final fun testing(/*0*/ a: test.TestFirst.InnerClass): kotlin.Int
|
||||
internal final fun testing(/*0*/ a: test.TestFirst.NotInnerClass): kotlin.Int
|
||||
}
|
||||
|
||||
internal final inner class InnerClass {
|
||||
|
||||
+17
-17
@@ -5,22 +5,22 @@ internal final class Test {
|
||||
|
||||
internal class object <class-object-for-Test> {
|
||||
/*primary*/ private constructor <class-object-for-Test>()
|
||||
public final val prop1: jet.Int
|
||||
public final fun <get-prop1>(): jet.Int
|
||||
public final var prop2: jet.Int
|
||||
public final fun <get-prop2>(): jet.Int
|
||||
protected final fun <set-prop2>(/*0*/ <set-?>: jet.Int): jet.Unit
|
||||
public final val prop3: jet.Int
|
||||
public final fun <get-prop3>(): jet.Int
|
||||
internal final var prop4: jet.Int
|
||||
internal final fun <get-prop4>(): jet.Int
|
||||
internal final fun <set-prop4>(/*0*/ <set-?>: jet.Int): jet.Unit
|
||||
public final var prop5: jet.Int
|
||||
public final fun <get-prop5>(): jet.Int
|
||||
public final fun <set-prop5>(/*0*/ <set-?>: jet.Int): jet.Unit
|
||||
public final var prop7: jet.Int
|
||||
public final fun <get-prop7>(): jet.Int
|
||||
public final fun <set-prop7>(/*0*/ i: jet.Int): jet.Unit
|
||||
internal final fun incProp4(): jet.Unit
|
||||
public final val prop1: kotlin.Int
|
||||
public final fun <get-prop1>(): kotlin.Int
|
||||
public final var prop2: kotlin.Int
|
||||
public final fun <get-prop2>(): kotlin.Int
|
||||
protected final fun <set-prop2>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final val prop3: kotlin.Int
|
||||
public final fun <get-prop3>(): kotlin.Int
|
||||
internal final var prop4: kotlin.Int
|
||||
internal final fun <get-prop4>(): kotlin.Int
|
||||
internal final fun <set-prop4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop5: kotlin.Int
|
||||
public final fun <get-prop5>(): kotlin.Int
|
||||
public final fun <set-prop5>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop7: kotlin.Int
|
||||
public final fun <get-prop7>(): kotlin.Int
|
||||
public final fun <set-prop7>(/*0*/ i: kotlin.Int): kotlin.Unit
|
||||
internal final fun incProp4(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+17
-17
@@ -4,22 +4,22 @@ internal trait Test {
|
||||
|
||||
internal class object <class-object-for-Test> {
|
||||
/*primary*/ private constructor <class-object-for-Test>()
|
||||
public final val prop1: jet.Int
|
||||
public final fun <get-prop1>(): jet.Int
|
||||
public final var prop2: jet.Int
|
||||
public final fun <get-prop2>(): jet.Int
|
||||
protected final fun <set-prop2>(/*0*/ <set-?>: jet.Int): jet.Unit
|
||||
public final val prop3: jet.Int
|
||||
public final fun <get-prop3>(): jet.Int
|
||||
internal final var prop4: jet.Int
|
||||
internal final fun <get-prop4>(): jet.Int
|
||||
internal final fun <set-prop4>(/*0*/ <set-?>: jet.Int): jet.Unit
|
||||
public final var prop5: jet.Int
|
||||
public final fun <get-prop5>(): jet.Int
|
||||
public final fun <set-prop5>(/*0*/ <set-?>: jet.Int): jet.Unit
|
||||
public final var prop7: jet.Int
|
||||
public final fun <get-prop7>(): jet.Int
|
||||
public final fun <set-prop7>(/*0*/ i: jet.Int): jet.Unit
|
||||
internal final fun incProp4(): jet.Unit
|
||||
public final val prop1: kotlin.Int
|
||||
public final fun <get-prop1>(): kotlin.Int
|
||||
public final var prop2: kotlin.Int
|
||||
public final fun <get-prop2>(): kotlin.Int
|
||||
protected final fun <set-prop2>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final val prop3: kotlin.Int
|
||||
public final fun <get-prop3>(): kotlin.Int
|
||||
internal final var prop4: kotlin.Int
|
||||
internal final fun <get-prop4>(): kotlin.Int
|
||||
internal final fun <set-prop4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop5: kotlin.Int
|
||||
public final fun <get-prop5>(): kotlin.Int
|
||||
public final fun <set-prop5>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop7: kotlin.Int
|
||||
public final fun <get-prop7>(): kotlin.Int
|
||||
public final fun <set-prop7>(/*0*/ i: kotlin.Int): kotlin.Unit
|
||||
internal final fun incProp4(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user