Replace "jet" package name with "kotlin" in testData
This commit is contained in:
@@ -3,13 +3,13 @@ package test
|
||||
public trait ErrorTypes : java.lang.Object {
|
||||
|
||||
public trait Sub : test.ErrorTypes.Super {
|
||||
public abstract fun errorTypeInParameter(/*0*/ list: jet.List<jet.Array<[ERROR : Unresolved java classifier: T]>?>?): jet.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun errorTypeInParameter(/*0*/ list: jet.List<jet.Array<[ERROR : Unresolved java classifier: T]>?>?): jet.Unit
|
||||
public abstract fun errorTypeInParameter(/*0*/ list: kotlin.List<kotlin.Array<[ERROR : Unresolved java classifier: T]>?>?): kotlin.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun errorTypeInParameter(/*0*/ list: kotlin.List<kotlin.Array<[ERROR : Unresolved java classifier: T]>?>?): kotlin.Unit
|
||||
public abstract override /*1*/ fun returnErrorType(): [ERROR : Unresolved java classifier: T]?
|
||||
}
|
||||
|
||||
public trait Super : java.lang.Object {
|
||||
public abstract fun errorTypeInParameter(/*0*/ list: jet.List<jet.Array<[ERROR : Unresolved java classifier: T]>?>?): jet.Unit
|
||||
public abstract fun errorTypeInParameter(/*0*/ list: kotlin.List<kotlin.Array<[ERROR : Unresolved java classifier: T]>?>?): kotlin.Unit
|
||||
public abstract fun returnErrorType(): [ERROR : Unresolved java classifier: T]?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
public /*synthesized*/ fun NullInAnnotation(/*0*/ function: () -> jet.Unit): test.NullInAnnotation
|
||||
public /*synthesized*/ fun NullInAnnotation(/*0*/ function: () -> kotlin.Unit): test.NullInAnnotation
|
||||
|
||||
public trait NullInAnnotation : java.lang.Object {
|
||||
test.NullInAnnotation.Ann(a = null: jet.Nothing?, b = {null}: jet.Array<jet.String>) public abstract fun foo(): jet.Unit
|
||||
test.NullInAnnotation.Ann(a = null: kotlin.Nothing?, b = {null}: kotlin.Array<kotlin.String>) public abstract fun foo(): kotlin.Unit
|
||||
|
||||
public final annotation class Ann : jet.Annotation {
|
||||
public constructor Ann(/*0*/ a: jet.String, /*1*/ vararg b: jet.String /*jet.Array<jet.String>*/)
|
||||
public abstract fun a(): jet.String
|
||||
public abstract fun b(): jet.Array<jet.String>
|
||||
public final annotation class Ann : kotlin.Annotation {
|
||||
public constructor Ann(/*0*/ a: kotlin.String, /*1*/ vararg b: kotlin.String /*kotlin.Array<kotlin.String>*/)
|
||||
public abstract fun a(): kotlin.String
|
||||
public abstract fun b(): kotlin.Array<kotlin.String>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,21 +2,21 @@ package test
|
||||
|
||||
public trait ReturnNotSubtype : java.lang.Object {
|
||||
|
||||
public trait Sub : test.ReturnNotSubtype.Super<jet.Boolean> {
|
||||
public abstract override /*1*/ fun _void(): jet.Boolean
|
||||
public abstract override /*1*/ fun array(): jet.Array<java.lang.Void>?
|
||||
public abstract override /*1*/ fun klass(): java.lang.Class<out jet.Any?>?
|
||||
public abstract override /*1*/ fun string1(): jet.Unit
|
||||
public abstract override /*1*/ fun string2(): jet.MutableList<jet.Boolean>?
|
||||
public trait Sub : test.ReturnNotSubtype.Super<kotlin.Boolean> {
|
||||
public abstract override /*1*/ fun _void(): kotlin.Boolean
|
||||
public abstract override /*1*/ fun array(): kotlin.Array<java.lang.Void>?
|
||||
public abstract override /*1*/ fun klass(): java.lang.Class<out kotlin.Any?>?
|
||||
public abstract override /*1*/ fun string1(): kotlin.Unit
|
||||
public abstract override /*1*/ fun string2(): kotlin.MutableList<kotlin.Boolean>?
|
||||
public abstract override /*1*/ fun t(): java.lang.Void?
|
||||
}
|
||||
|
||||
public trait Super</*0*/ T> : java.lang.Object {
|
||||
public abstract fun _void(): jet.Unit
|
||||
public abstract fun array(): jet.Array<T>?
|
||||
public abstract fun klass(): java.lang.Class<out jet.CharSequence?>?
|
||||
public abstract fun string1(): jet.String?
|
||||
public abstract fun string2(): jet.String?
|
||||
public abstract fun _void(): kotlin.Unit
|
||||
public abstract fun array(): kotlin.Array<T>?
|
||||
public abstract fun klass(): java.lang.Class<out kotlin.CharSequence?>?
|
||||
public abstract fun string1(): kotlin.String?
|
||||
public abstract fun string2(): kotlin.String?
|
||||
public abstract fun t(): T?
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
public trait WrongNumberOfGenericParameters : java.lang.Object {
|
||||
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<out jet.Any?>?
|
||||
public abstract fun o0(): test.WrongNumberOfGenericParameters.One<out kotlin.Any?>?
|
||||
public abstract fun o2(): test.WrongNumberOfGenericParameters.One<[ERROR : T]>?
|
||||
public abstract fun t1(): test.WrongNumberOfGenericParameters.Two<out jet.Any?, out jet.Any?>?
|
||||
public abstract fun t1(): test.WrongNumberOfGenericParameters.Two<out kotlin.Any?, out kotlin.Any?>?
|
||||
public abstract fun z(): test.WrongNumberOfGenericParameters.Zero?
|
||||
|
||||
public trait One</*0*/ T> : java.lang.Object {
|
||||
|
||||
Reference in New Issue
Block a user