[FIR] Render nullability in type renderer, not in fir renderer
This commit is contained in:
+1
-1
@@ -29,7 +29,7 @@ public final class Test : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
public final inline class Z : R|kotlin/Any| {
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
public open operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean|
|
||||
|
||||
public open fun hashCode(): R|kotlin/Int|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public final inline class Z : R|kotlin/Any| {
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
public open operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean|
|
||||
|
||||
public open fun hashCode(): R|kotlin/Int|
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ public final data class My : R|kotlin/Any| {
|
||||
|
||||
public final fun copy(x: R|kotlin/Int| = STUB): R|test/My|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
public open operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean|
|
||||
|
||||
public open fun hashCode(): R|kotlin/Int|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -12,7 +12,7 @@ public final class Class : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
public final class CustomDelegate : R|kotlin/Any| {
|
||||
public final operator fun getValue(thisRef: R|kotlin/Any|?, prop: R|kotlin/reflect/KProperty<*>|): R|kotlin/String|
|
||||
public final operator fun getValue(thisRef: R|kotlin/Any?|, prop: R|kotlin/reflect/KProperty<*>|): R|kotlin/String|
|
||||
|
||||
public constructor(): R|test/CustomDelegate|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
public final enum class EnumWithGenericConstructorParameter : R|kotlin/Enum<test/EnumWithGenericConstructorParameter>| {
|
||||
private constructor(list: R|kotlin/collections/List<kotlin/String>|?): R|test/EnumWithGenericConstructorParameter|
|
||||
private constructor(list: R|kotlin/collections/List<kotlin/String>?|): R|test/EnumWithGenericConstructorParameter|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,7 +1,7 @@
|
||||
public open class DifferentGetterAndSetter : R|kotlin/Any| {
|
||||
public open fun getSomething(): R|kotlin/Int|
|
||||
|
||||
public open fun setSomething(p0: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public open fun setSomething(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/DifferentGetterAndSetter|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class JavaBeanVal : R|kotlin/Any| {
|
||||
public open fun getColor(): R|kotlin/String|?
|
||||
public open fun getColor(): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/JavaBeanVal|
|
||||
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
public open class JavaBeanVar : R|kotlin/Any| {
|
||||
public open fun getColor(): R|kotlin/String|?
|
||||
public open fun getColor(): R|kotlin/String?|
|
||||
|
||||
public open fun setColor(p0: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public open fun setColor(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/JavaBeanVar|
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -1,7 +1,7 @@
|
||||
public open class JavaBeanVarOfGenericType<P> : R|kotlin/Any| {
|
||||
public open fun getCharacters(): R|java/util/ArrayList<P>|?
|
||||
public open fun getCharacters(): R|java/util/ArrayList<P>?|
|
||||
|
||||
public open fun setCharacters(p0: R|java/util/ArrayList<P>|?): R|kotlin/Unit|
|
||||
public open fun setCharacters(p0: R|java/util/ArrayList<P>?|): R|kotlin/Unit|
|
||||
|
||||
public constructor<P>(): R|test/JavaBeanVarOfGenericType<P>|
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
public open class TwoSetters : R|kotlin/Any| {
|
||||
public open fun setSize(p0: R|kotlin/Int|): R|kotlin/Unit|
|
||||
|
||||
public open fun setSize(p0: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public open fun setSize(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/TwoSetters|
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public open class ConstructorGenericDeep : R|kotlin/Any| {
|
||||
public constructor(p0: R|java/lang/Class<kotlin/Any>|?): R|test/ConstructorGenericDeep|
|
||||
public constructor(p0: R|java/lang/Class<kotlin/Any?>?|): R|test/ConstructorGenericDeep|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public open class ConstructorGenericSimple : R|kotlin/Any| {
|
||||
public constructor(p0: R|kotlin/Any|?): R|test/ConstructorGenericSimple|
|
||||
public constructor(p0: R|kotlin/Any?|): R|test/ConstructorGenericSimple|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
public open class ConstructorGenericUpperBound : R|kotlin/Any| {
|
||||
public constructor(p0: R|java/util/RandomAccess|?): R|test/ConstructorGenericUpperBound|
|
||||
public constructor(p0: R|java/util/RandomAccess?|): R|test/ConstructorGenericUpperBound|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ public final data class DataClass : R|kotlin/Any| {
|
||||
|
||||
public final fun copy(x: R|kotlin/String| = STUB, z: R|kotlin/Double| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
public open operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean|
|
||||
|
||||
public open fun hashCode(): R|kotlin/Int|
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ public final data class DataClass : R|kotlin/Any| {
|
||||
|
||||
public final fun copy(x: R|kotlin/String| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
public open operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean|
|
||||
|
||||
public open fun hashCode(): R|kotlin/Int|
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ public final data class DataClass : R|kotlin/Any| {
|
||||
|
||||
public final fun copy(x: R|kotlin/String| = STUB, y: R|kotlin/Int| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
public open operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean|
|
||||
|
||||
public open fun hashCode(): R|kotlin/Int|
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ public final data class DataClass : R|kotlin/Any| {
|
||||
|
||||
public final fun copy(x: R|kotlin/String| = STUB, y: R|kotlin/Int| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
public open operator fun equals(other: R|kotlin/Any?|): R|kotlin/Boolean|
|
||||
|
||||
public open fun hashCode(): R|kotlin/Int|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public final class ArrayTypeVariance : R|kotlin/Any| {
|
||||
public final fun toArray(p0: R|kotlin/Array<out kotlin/Any>|?): R|kotlin/Array<kotlin/Any>|?
|
||||
public final fun toArray(p0: R|kotlin/Array<out kotlin/Any>?|): R|kotlin/Array<kotlin/Any>?|
|
||||
|
||||
public constructor(): R|test/ArrayTypeVariance|
|
||||
|
||||
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
public open class ClassWithTypePRefNext<R : R|kotlin/collections/Iterable<P>|?, P> : R|kotlin/Any| {
|
||||
public constructor<R : R|kotlin/collections/Iterable<P>|?, P>(): R|test/ClassWithTypePRefNext<R, P>|
|
||||
public open class ClassWithTypePRefNext<R : R|kotlin/collections/Iterable<P>?|, P> : R|kotlin/Any| {
|
||||
public constructor<R : R|kotlin/collections/Iterable<P>?|, P>(): R|test/ClassWithTypePRefNext<R, P>|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+2
-2
@@ -1,4 +1,4 @@
|
||||
public final class ClassWithTypePRefSelfAndClass<P : R|test/ClassWithTypePRefSelfAndClass<P>|?> : R|kotlin/Any| {
|
||||
public constructor<P : R|test/ClassWithTypePRefSelfAndClass<P>|?>(): R|test/ClassWithTypePRefSelfAndClass<P>|
|
||||
public final class ClassWithTypePRefSelfAndClass<P : R|test/ClassWithTypePRefSelfAndClass<P>?|> : R|kotlin/Any| {
|
||||
public constructor<P : R|test/ClassWithTypePRefSelfAndClass<P>?|>(): R|test/ClassWithTypePRefSelfAndClass<P>|
|
||||
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
public open class FieldOfArrayType : R|kotlin/Any| {
|
||||
public final var files: R|kotlin/Array<java/io/File>|?
|
||||
public get(): R|kotlin/Array<java/io/File>|?
|
||||
public set(value: R|kotlin/Array<java/io/File>|?): kotlin/Unit
|
||||
public final var files: R|kotlin/Array<java/io/File>?|
|
||||
public get(): R|kotlin/Array<java/io/File>?|
|
||||
public set(value: R|kotlin/Array<java/io/File>?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/FieldOfArrayType|
|
||||
|
||||
|
||||
compiler/fir/resolve/testData/loadCompiledKotlin/fromLoadJava/InheritMethodsDifferentReturnTypes.txt
Vendored
+4
-4
@@ -5,16 +5,16 @@ public final class InheritMethodsDifferentReturnTypes : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract fun bar(): R|kotlin/String|?
|
||||
public abstract fun bar(): R|kotlin/String?|
|
||||
|
||||
public abstract fun foo(): R|kotlin/CharSequence|?
|
||||
public abstract fun foo(): R|kotlin/CharSequence?|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract fun bar(): R|kotlin/CharSequence|?
|
||||
public abstract fun bar(): R|kotlin/CharSequence?|
|
||||
|
||||
public abstract fun foo(): R|kotlin/String|?
|
||||
public abstract fun foo(): R|kotlin/String?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodTypePOneUpperBound : R|kotlin/Any| {
|
||||
public open fun <T : R|kotlin/Cloneable|?> bar(): R|kotlin/Unit|
|
||||
public open fun <T : R|kotlin/Cloneable?|> bar(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodTypePOneUpperBound|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodTypePTwoUpperBounds : R|kotlin/Any| {
|
||||
public open fun <T : R|kotlin/Cloneable|?, R|java/lang/Runnable|?> foo(): R|kotlin/Unit|
|
||||
public open fun <T : R|kotlin/Cloneable?|, R|java/lang/Runnable?|> foo(): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodTypePTwoUpperBounds|
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public open class MyException : R|kotlin/Any| {
|
||||
public constructor(p0: R|kotlin/String|?, p1: R|kotlin/Throwable|?): R|test/MyException|
|
||||
public constructor(p0: R|kotlin/String?|, p1: R|kotlin/Throwable?|): R|test/MyException|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+2
-2
@@ -1,6 +1,6 @@
|
||||
public abstract interface RemoveRedundantProjectionKind : R|kotlin/Any| {
|
||||
public abstract fun f(p0: R|kotlin/Comparable<kotlin/CharSequence>|?): R|kotlin/Unit|
|
||||
public abstract fun f(p0: R|kotlin/Comparable<kotlin/CharSequence?>?|): R|kotlin/Unit|
|
||||
|
||||
public abstract fun f(p0: R|kotlin/collections/Collection<kotlin/CharSequence>|?): R|kotlin/Unit|
|
||||
public abstract fun f(p0: R|kotlin/collections/Collection<kotlin/CharSequence?>?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
public final class UnboundWildcard : R|kotlin/Any| {
|
||||
public final fun foo(): R|test/UnboundWildcard.MyClass<*>|?
|
||||
public final fun foo(): R|test/UnboundWildcard.MyClass<*>?|
|
||||
|
||||
public constructor(): R|test/UnboundWildcard|
|
||||
|
||||
public abstract interface MyClass<T : R|kotlin/CharSequence|?> : R|kotlin/Any| {
|
||||
public abstract interface MyClass<T : R|kotlin/CharSequence?|> : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodWithFunctionTypes : R|kotlin/Any| {
|
||||
public open fun foo(f: R|kotlin/Function1<kotlin/String, kotlin/String>|): @R|kotlin/ExtensionFunctionType|() R|kotlin/Function1<kotlin/String, kotlin/String>|?
|
||||
public open fun foo(f: R|kotlin/Function1<kotlin/String?, kotlin/String>|): @R|kotlin/ExtensionFunctionType|() R|kotlin/Function1<kotlin/String, kotlin/String?>?|
|
||||
|
||||
public constructor(): R|test/MethodWithFunctionTypes|
|
||||
|
||||
|
||||
compiler/fir/resolve/testData/loadCompiledKotlin/fromLoadJava/kotlinSignature/MethodWithGenerics.txt
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodWithGenerics : R|kotlin/Any| {
|
||||
public open fun foo(a: R|kotlin/String|, b: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>|): R|kotlin/String|
|
||||
public open fun foo(a: R|kotlin/String|, b: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String?, kotlin/String>?>|): R|kotlin/String|
|
||||
|
||||
public constructor(): R|test/MethodWithGenerics|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MethodWithTypeParameters : R|kotlin/Any| {
|
||||
public open fun <A, B : R|java/lang/Runnable|, R|kotlin/collections/List<kotlin/Cloneable>|> foo(a: R|A|, b: R|kotlin/collections/List<B>|, c: R|kotlin/collections/MutableList<in kotlin/String>|): R|kotlin/Unit|
|
||||
public open fun <A, B : R|java/lang/Runnable|, R|kotlin/collections/List<kotlin/Cloneable>|> foo(a: R|A|, b: R|kotlin/collections/List<B>|, c: R|kotlin/collections/MutableList<in kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/MethodWithTypeParameters|
|
||||
|
||||
|
||||
compiler/fir/resolve/testData/loadCompiledKotlin/fromLoadJava/kotlinSignature/PropertySimpleType.txt
Vendored
+3
-3
@@ -3,9 +3,9 @@ public open class PropertySimpleType : R|kotlin/Any| {
|
||||
public get(): R|kotlin/String|
|
||||
public set(value: R|kotlin/String|): kotlin/Unit
|
||||
|
||||
public final var fieldTwo: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public set(value: R|kotlin/String|?): kotlin/Unit
|
||||
public final var fieldTwo: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
public set(value: R|kotlin/String?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/PropertySimpleType|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -3,7 +3,7 @@ public final class StarProjection : R|kotlin/Any| {
|
||||
|
||||
public constructor(): R|test/StarProjection|
|
||||
|
||||
public abstract interface MyClass<T : R|kotlin/CharSequence|?> : R|kotlin/Any| {
|
||||
public abstract interface MyClass<T : R|kotlin/CharSequence?|> : R|kotlin/Any| {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class ConflictingProjectionKind : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/collections/List<kotlin/Number>|?): R|kotlin/Unit|
|
||||
public open fun foo(p0: R|kotlin/collections/List<kotlin/Number>?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/ConflictingProjectionKind|
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
public open class ExplicitFieldGettersAndSetters : R|kotlin/Any| {
|
||||
public final var foo: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public set(value: R|kotlin/String|?): kotlin/Unit
|
||||
public final var foo: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
public set(value: R|kotlin/String?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/ExplicitFieldGettersAndSetters|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class ExtraUpperBound : R|kotlin/Any| {
|
||||
public open fun <A : R|java/lang/Runnable|?> foo(): R|kotlin/String|?
|
||||
public open fun <A : R|java/lang/Runnable?|> foo(): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/ExtraUpperBound|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class MissingUpperBound : R|kotlin/Any| {
|
||||
public open fun <A : R|java/lang/Runnable|?, R|kotlin/Cloneable|?> foo(): R|kotlin/String|?
|
||||
public open fun <A : R|java/lang/Runnable?|, R|kotlin/Cloneable?|> foo(): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/MissingUpperBound|
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
public open class NoFieldTypeRef : R|kotlin/Any| {
|
||||
public final var foo: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public set(value: R|kotlin/String|?): kotlin/Unit
|
||||
public final var foo: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
public set(value: R|kotlin/String?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/NoFieldTypeRef|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class NotVarargReplacedWithVararg : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public open fun foo(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/NotVarargReplacedWithVararg|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class ReturnTypeMissing : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?): R|kotlin/Int|
|
||||
public open fun foo(p0: R|kotlin/String?|): R|kotlin/Int|
|
||||
|
||||
public constructor(): R|test/ReturnTypeMissing|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class SyntaxError : R|kotlin/Any| {
|
||||
public open fun foo(): R|kotlin/Int|?
|
||||
public open fun foo(): R|kotlin/Int?|
|
||||
|
||||
public constructor(): R|test/SyntaxError|
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
public open class SyntaxErrorInFieldAnnotation : R|kotlin/Any| {
|
||||
public final var foo: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public set(value: R|kotlin/String|?): kotlin/Unit
|
||||
public final var foo: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
public set(value: R|kotlin/String?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/SyntaxErrorInFieldAnnotation|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class VarargReplacedWithNotVararg : R|kotlin/Any| {
|
||||
public open fun foo(vararg p0: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
|
||||
public open fun foo(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/VarargReplacedWithNotVararg|
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
public open class WrongFieldInitializer : R|kotlin/Any| {
|
||||
public final var foo: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public set(value: R|kotlin/String|?): kotlin/Unit
|
||||
public final var foo: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
public set(value: R|kotlin/String?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/WrongFieldInitializer|
|
||||
|
||||
|
||||
+5
-5
@@ -1,10 +1,10 @@
|
||||
public open class WrongFieldMutability : R|kotlin/Any| {
|
||||
public final val fooFinal: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public final val fooFinal: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
|
||||
public final var fooNotFinal: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public set(value: R|kotlin/String|?): kotlin/Unit
|
||||
public final var fooNotFinal: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
public set(value: R|kotlin/String?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/WrongFieldMutability|
|
||||
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
public open class WrongFieldName : R|kotlin/Any| {
|
||||
public final var foo: R|kotlin/String|?
|
||||
public get(): R|kotlin/String|?
|
||||
public set(value: R|kotlin/String|?): kotlin/Unit
|
||||
public final var foo: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?|
|
||||
public set(value: R|kotlin/String?|): kotlin/Unit
|
||||
|
||||
public constructor(): R|test/WrongFieldName|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongMethodName : R|kotlin/Any| {
|
||||
public open fun foo(): R|kotlin/String|?
|
||||
public open fun foo(): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/WrongMethodName|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongProjectionKind : R|kotlin/Any| {
|
||||
public open fun copy(p0: R|kotlin/Array<out kotlin/Number>|?, p1: R|kotlin/Array<out kotlin/Number>|?): R|kotlin/collections/MutableList<kotlin/Number>|?
|
||||
public open fun copy(p0: R|kotlin/Array<out kotlin/Number>?|, p1: R|kotlin/Array<out kotlin/Number>?|): R|kotlin/collections/MutableList<kotlin/Number>?|
|
||||
|
||||
public constructor(): R|test/WrongProjectionKind|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongReturnTypeStructure : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>|?): R|kotlin/String|?
|
||||
public open fun foo(p0: R|kotlin/String?|, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>?|): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/WrongReturnTypeStructure|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeName1 : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?): R|kotlin/String|?
|
||||
public open fun foo(p0: R|kotlin/String?|): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/WrongTypeName1|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeName2 : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?): R|kotlin/String|?
|
||||
public open fun foo(p0: R|kotlin/String?|): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/WrongTypeName2|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeName3 : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?): R|kotlin/String|?
|
||||
public open fun foo(p0: R|kotlin/String?|): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/WrongTypeName3|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeParameterBoundStructure1 : R|kotlin/Any| {
|
||||
public open fun <A, B : R|java/lang/Runnable|?, R|kotlin/collections/List<kotlin/Cloneable>|?> foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
public open fun <A, B : R|java/lang/Runnable?|, R|kotlin/collections/List<kotlin/Cloneable>?|> foo(p0: R|A|, p1: R|kotlin/collections/List<B>?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/WrongTypeParameterBoundStructure1|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeParameterBoundStructure2 : R|kotlin/Any| {
|
||||
public open fun <A, B : R|java/lang/Runnable|?, R|kotlin/collections/List<kotlin/Cloneable>|?> foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
public open fun <A, B : R|java/lang/Runnable?|, R|kotlin/collections/List<kotlin/Cloneable>?|> foo(p0: R|A|, p1: R|kotlin/collections/List<B>?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/WrongTypeParameterBoundStructure2|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongTypeParametersCount : R|kotlin/Any| {
|
||||
public open fun <A, B> foo(p0: R|A|, p1: R|kotlin/collections/List<B>|?): R|kotlin/Unit|
|
||||
public open fun <A, B> foo(p0: R|A|, p1: R|kotlin/collections/List<B>?|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/WrongTypeParametersCount|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongValueParameterStructure1 : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>|?): R|kotlin/String|?
|
||||
public open fun foo(p0: R|kotlin/String?|, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>?|): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/WrongValueParameterStructure1|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongValueParameterStructure2 : R|kotlin/Any| {
|
||||
public open fun foo(p0: R|kotlin/String|?, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>|?): R|kotlin/String|?
|
||||
public open fun foo(p0: R|kotlin/String?|, p1: R|kotlin/collections/List<kotlin/collections/Map.Entry<kotlin/String, kotlin/String>>?|): R|kotlin/String?|
|
||||
|
||||
public constructor(): R|test/WrongValueParameterStructure2|
|
||||
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class WrongValueParametersCount : R|kotlin/Any| {
|
||||
public open fun foo(): R|kotlin/Int|?
|
||||
public open fun foo(): R|kotlin/Int?|
|
||||
|
||||
public constructor(): R|test/WrongValueParametersCount|
|
||||
|
||||
|
||||
+12
-12
@@ -1,31 +1,31 @@
|
||||
public abstract interface PropagateTypeArgumentNullable : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/PropagateTypeArgumentNullable.Super| {
|
||||
public abstract fun invOutR(): R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String>>|
|
||||
public abstract fun invOutR(): R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|
|
||||
|
||||
public abstract fun invOutS(p: R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String>>|): R|kotlin/Unit|
|
||||
public abstract fun invOutS(p: R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
|
||||
|
||||
public abstract fun invR(): R|kotlin/collections/MutableList<kotlin/String>|
|
||||
public abstract fun invR(): R|kotlin/collections/MutableList<kotlin/String?>|
|
||||
|
||||
public abstract fun outOutS(p: R|kotlin/collections/List<kotlin/collections/List<kotlin/String>>|): R|kotlin/Unit|
|
||||
public abstract fun outOutS(p: R|kotlin/collections/List<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
|
||||
|
||||
public abstract fun outR(): R|kotlin/collections/List<kotlin/String>|
|
||||
public abstract fun outR(): R|kotlin/collections/List<kotlin/String?>|
|
||||
|
||||
public abstract fun outS(p: R|kotlin/collections/List<kotlin/String>|): R|kotlin/Unit|
|
||||
public abstract fun outS(p: R|kotlin/collections/List<kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun invOutR(): R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String>>|
|
||||
public abstract fun invOutR(): R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|
|
||||
|
||||
public abstract fun invOutS(p: R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String>>|): R|kotlin/Unit|
|
||||
public abstract fun invOutS(p: R|kotlin/collections/MutableList<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
|
||||
|
||||
public abstract fun invR(): R|kotlin/collections/MutableList<kotlin/String>|
|
||||
public abstract fun invR(): R|kotlin/collections/MutableList<kotlin/String?>|
|
||||
|
||||
public abstract fun outOutS(p: R|kotlin/collections/List<kotlin/collections/List<kotlin/String>>|): R|kotlin/Unit|
|
||||
public abstract fun outOutS(p: R|kotlin/collections/List<kotlin/collections/List<kotlin/String?>>|): R|kotlin/Unit|
|
||||
|
||||
public abstract fun outR(): R|kotlin/collections/List<kotlin/String>|
|
||||
public abstract fun outR(): R|kotlin/collections/List<kotlin/String?>|
|
||||
|
||||
public abstract fun outS(p: R|kotlin/collections/List<kotlin/String>|): R|kotlin/Unit|
|
||||
public abstract fun outS(p: R|kotlin/collections/List<kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface InheritNotVararg : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritNotVararg.Super| {
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/String>|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/String>?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/String>|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/String>?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface InheritNotVarargInteger : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritNotVarargInteger.Super| {
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/Int>|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/Int>?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/Int>|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/Array<out kotlin/Int>?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface InheritNotVarargPrimitive : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritNotVarargPrimitive.Super| {
|
||||
public abstract fun foo(p0: R|kotlin/IntArray|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/IntArray?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(p0: R|kotlin/IntArray|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/IntArray?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface InheritVararg : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritVararg.Super| {
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface InheritVarargInteger : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/InheritVarargInteger.Super| {
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/Int>|): R|kotlin/Unit|
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/Int?>|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/Int>|): R|kotlin/Unit|
|
||||
public abstract fun foo(vararg p0: R|kotlin/Array<out kotlin/Int?>|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -2,12 +2,12 @@ public abstract interface Kt3302 : R|kotlin/Any| {
|
||||
public abstract interface BSONObject : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun put(p0: R|kotlin/String|, p1: R|kotlin/Any|): R|kotlin/Any|?
|
||||
public abstract fun put(p0: R|kotlin/String|, p1: R|kotlin/Any|): R|kotlin/Any?|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface BasicBSONObject : R|test/Kt3302.LinkedHashMap<kotlin/String, kotlin/Any>|, R|test/Kt3302.BSONObject| {
|
||||
public abstract fun put(key: R|kotlin/String|, value: R|kotlin/Any|): R|kotlin/Any|?
|
||||
public abstract fun put(key: R|kotlin/String|, value: R|kotlin/Any|): R|kotlin/Any?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface NullableToNotNull : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/NullableToNotNull.Super| {
|
||||
public abstract fun foo(p0: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(p0: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p0: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface NullableToNotNullKotlinSignature : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/NullableToNotNullKotlinSignature.Super| {
|
||||
public abstract fun foo(p: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(p: R|kotlin/String|?): R|kotlin/Unit|
|
||||
public abstract fun foo(p: R|kotlin/String?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public abstract interface AddNotNullJavaSubtype : R|kotlin/Any| {
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/CharSequence|?
|
||||
public abstract fun foo(): R|kotlin/CharSequence?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public abstract interface AddNotNullSameJavaType : R|kotlin/Any| {
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/CharSequence|?
|
||||
public abstract fun foo(): R|kotlin/CharSequence?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface HalfSubstitutedTypeParameters : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/HalfSubstitutedTypeParameters.Super| {
|
||||
public abstract fun foo(): R|test/HalfSubstitutedTypeParameters.TrickyList<kotlin/Int, kotlin/String>|
|
||||
public abstract fun foo(): R|test/HalfSubstitutedTypeParameters.TrickyList<kotlin/Int, kotlin/String?>|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String>|
|
||||
public abstract fun foo(): R|kotlin/collections/MutableList<kotlin/String?>|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,13 +1,13 @@
|
||||
public abstract interface SameProjectionKind : R|kotlin/Any| {
|
||||
public abstract interface Sub : R|test/SameProjectionKind.Super| {
|
||||
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/Number>|?
|
||||
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/Number?>?|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/Number>|?
|
||||
public abstract fun foo(): R|kotlin/collections/MutableCollection<out kotlin/Number?>?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ public abstract interface SubclassFromGenericAndNot : R|kotlin/Any| {
|
||||
public abstract interface NonGeneric : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/String|?
|
||||
public abstract fun foo(): R|kotlin/String?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public abstract interface TwoSuperclassesInvariantAndCovariantInferNullability :
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>|
|
||||
public abstract fun foo(): R|kotlin/collections/List<kotlin/String?>|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public abstract interface TwoSuperclassesReturnJavaSubtype : R|kotlin/Any| {
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/CharSequence|?
|
||||
public abstract fun foo(): R|kotlin/CharSequence?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public abstract interface TwoSuperclassesReturnSameJavaType : R|kotlin/Any| {
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/CharSequence|?
|
||||
public abstract fun foo(): R|kotlin/CharSequence?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -7,14 +7,14 @@ public abstract interface TwoSuperclassesSupplementNotNull : R|kotlin/Any| {
|
||||
public abstract interface Super1 : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>|
|
||||
public abstract fun foo(): R|kotlin/collections/List<kotlin/String?>|
|
||||
|
||||
}
|
||||
|
||||
public abstract interface Super2 : R|kotlin/Any| {
|
||||
public abstract fun dummy(): R|kotlin/Unit|
|
||||
|
||||
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>|?
|
||||
public abstract fun foo(): R|kotlin/collections/List<kotlin/String>?|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
public abstract interface LoadIterable<T> : R|kotlin/Any| {
|
||||
public abstract fun getIterable(): R|kotlin/collections/MutableIterable<T>|?
|
||||
public abstract fun getIterable(): R|kotlin/collections/MutableIterable<T>?|
|
||||
|
||||
public abstract fun setIterable(p0: R|kotlin/collections/Iterable<T>|?): R|kotlin/Unit|
|
||||
public abstract fun setIterable(p0: R|kotlin/collections/Iterable<T>?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
public abstract interface LoadIterator<T> : R|kotlin/Any| {
|
||||
public abstract fun getIterator(): R|kotlin/collections/MutableIterator<T>|?
|
||||
public abstract fun getIterator(): R|kotlin/collections/MutableIterator<T>?|
|
||||
|
||||
public abstract fun setIterator(p0: R|kotlin/collections/Iterator<T>|?): R|kotlin/Unit|
|
||||
public abstract fun setIterator(p0: R|kotlin/collections/Iterator<T>?|): R|kotlin/Unit|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class Max : R|kotlin/Any| {
|
||||
public open fun <T : R|kotlin/Comparable<T>|?> max(p0: R|kotlin/collections/Collection<T>|?): R|T|
|
||||
public open fun <T : R|kotlin/Comparable<T>?|> max(p0: R|kotlin/collections/Collection<T>?|): R|T|
|
||||
|
||||
public constructor(): R|test/Max|
|
||||
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
public final fun ff(p: R|kotlin/collections/List<java/lang/CharSequence>|): R|kotlin/Int|
|
||||
public final fun ff(p: R|kotlin/collections/List<java/lang/CharSequence?>|): R|kotlin/Int|
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
public final fun fff(a: R|java/lang/Integer|?): R|kotlin/Int|
|
||||
public final fun fff(a: R|java/lang/Integer?|): R|kotlin/Int|
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
public final fun ffgg(): R|kotlin/collections/List<kotlin/CharSequence>|
|
||||
public final fun ffgg(): R|kotlin/collections/List<kotlin/CharSequence?>|
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
public final fun ff(): R|java/lang/Integer|?
|
||||
public final fun ff(): R|java/lang/Integer?|
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
public open class VarargString : R|kotlin/Any| {
|
||||
public open fun vararg(vararg p0: R|kotlin/Array<out kotlin/String>|): R|kotlin/Unit|
|
||||
public open fun vararg(vararg p0: R|kotlin/Array<out kotlin/String?>|): R|kotlin/Unit|
|
||||
|
||||
public constructor(): R|test/VarargString|
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public final class C : R|java/util/ArrayList<kotlin/String>| {
|
||||
public final class C : R|java/util/ArrayList<kotlin/String?>| {
|
||||
public constructor(): R|test/C|
|
||||
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
public final class ExtValInClass : R|kotlin/Any| {
|
||||
public final val R|kotlin/Int|.asas: R|java/util/List<kotlin/Int>|?
|
||||
public get(): R|java/util/List<kotlin/Int>|?
|
||||
public final val R|kotlin/Int|.asas: R|java/util/List<kotlin/Int>?|
|
||||
public get(): R|java/util/List<kotlin/Int>?|
|
||||
|
||||
public constructor(): R|test/ExtValInClass|
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun anyq(): R|kotlin/Any|?
|
||||
public final fun anyq(): R|kotlin/Any?|
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun fff(): R|kotlin/Int|?
|
||||
public final fun fff(): R|kotlin/Int?|
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun integerq(): R|java/lang/Integer|?
|
||||
public final fun integerq(): R|java/lang/Integer?|
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun objq(): R|java/lang/Object|?
|
||||
public final fun objq(): R|java/lang/Object?|
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun fff(): R|java/lang/String|?
|
||||
public final fun fff(): R|java/lang/String?|
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun listOfAnyQ(): R|kotlin/collections/List<kotlin/Any>|
|
||||
public final fun listOfAnyQ(): R|kotlin/collections/List<kotlin/Any?>|
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun nothingq(): R|kotlin/Nothing|?
|
||||
public final fun nothingq(): R|kotlin/Nothing?|
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
public final fun array(a: R|kotlin/Array<kotlin/Int>|): R|ft<kotlin/Array<ft<kotlin/Int, kotlin/Int?>>, kotlin/Array<out ft<kotlin/Int, kotlin/Int?>>?>|!
|
||||
public final fun array(a: R|kotlin/Array<kotlin/Int>|): R|ft<kotlin/Array<ft<kotlin/Int, kotlin/Int?>!>, kotlin/Array<out ft<kotlin/Int, kotlin/Int?>!>?>!|
|
||||
|
||||
public final fun list(): R|ft<kotlin/collections/MutableList<ft<kotlin/String, kotlin/String?>>, kotlin/collections/List<ft<kotlin/String, kotlin/String?>>?>|!
|
||||
public final fun list(): R|ft<kotlin/collections/MutableList<ft<kotlin/String, kotlin/String?>!>, kotlin/collections/List<ft<kotlin/String, kotlin/String?>!>?>!|
|
||||
|
||||
public final fun printStream(): R|ft<java/io/PrintStream, java/io/PrintStream?>|!
|
||||
public final fun printStream(): R|ft<java/io/PrintStream, java/io/PrintStream?>!|
|
||||
|
||||
@@ -1 +1 @@
|
||||
public final fun fff(): R|kotlin/String|?
|
||||
public final fun fff(): R|kotlin/String?|
|
||||
|
||||
Reference in New Issue
Block a user