fix tests in org.jetbrains.kotlin.jvm.compiler
This commit is contained in:
@@ -7,27 +7,27 @@ public/*package*/ open class ClassObject {
|
||||
public/*package*/ open fun accessToPackageObject(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal object PackageInner {
|
||||
public object PackageInner {
|
||||
private constructor PackageInner()
|
||||
internal final val value: kotlin.Int
|
||||
internal final fun foo(): kotlin.Unit
|
||||
public final val value: kotlin.Int
|
||||
public final fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class WithClassObject {
|
||||
public final class WithClassObject {
|
||||
public constructor WithClassObject()
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val value: kotlin.Int
|
||||
internal final val valueWithGetter: kotlin.Int
|
||||
internal final var variable: kotlin.Int
|
||||
internal final var variableWithAccessors: kotlin.Int
|
||||
internal final fun foo(): kotlin.Unit
|
||||
public final val value: kotlin.Int
|
||||
public final val valueWithGetter: kotlin.Int
|
||||
public final var variable: kotlin.Int
|
||||
public final var variableWithAccessors: kotlin.Int
|
||||
public final fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class MyInner {
|
||||
public final class MyInner {
|
||||
public constructor MyInner()
|
||||
internal final val value: kotlin.Int
|
||||
internal final fun foo(): kotlin.Unit
|
||||
public final val value: kotlin.Int
|
||||
public final fun foo(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
public constructor A(/*0*/ kotlin.Int = ...)
|
||||
internal final val a: kotlin.Int
|
||||
public final val a: kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Simple {
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
public constructor A(/*0*/ kotlin.Int = ..., /*1*/ kotlin.String = ...)
|
||||
internal final val a: kotlin.Int
|
||||
internal final val b: kotlin.String
|
||||
public final val a: kotlin.Int
|
||||
public final val b: kotlin.String
|
||||
}
|
||||
|
||||
public/*package*/ open class Simple {
|
||||
|
||||
@@ -4,7 +4,7 @@ public/*package*/ open class ExtendsAbstractListT {
|
||||
public/*package*/ constructor ExtendsAbstractListT()
|
||||
}
|
||||
|
||||
internal abstract class Mine</*0*/ T> : java.util.AbstractList<T> {
|
||||
public abstract class Mine</*0*/ T> : java.util.AbstractList<T> {
|
||||
public constructor Mine</*0*/ T>()
|
||||
protected/*protected and package*/ final /*fake_override*/ var modCount: kotlin.Int
|
||||
public open /*fake_override*/ fun add(/*0*/ T!): kotlin.Boolean
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal abstract class Mine : java.util.List<kotlin.String> {
|
||||
public abstract class Mine : java.util.List<kotlin.String> {
|
||||
public constructor Mine()
|
||||
public abstract /*fake_override*/ fun add(/*0*/ kotlin.Int, /*1*/ kotlin.String!): kotlin.Unit
|
||||
public abstract /*fake_override*/ fun add(/*0*/ kotlin.String!): kotlin.Boolean
|
||||
|
||||
@@ -4,7 +4,7 @@ public/*package*/ open class ImplementsMapPP {
|
||||
public/*package*/ constructor ImplementsMapPP()
|
||||
}
|
||||
|
||||
internal abstract class Mine</*0*/ P1, /*1*/ P2> : java.util.Map<P2, P1> {
|
||||
public abstract class Mine</*0*/ P1, /*1*/ P2> : java.util.Map<P2, P1> {
|
||||
public constructor Mine</*0*/ P1, /*1*/ P2>()
|
||||
public abstract /*fake_override*/ fun clear(): kotlin.Unit
|
||||
public abstract /*fake_override*/ fun containsKey(/*0*/ kotlin.Any!): kotlin.Boolean
|
||||
|
||||
@@ -6,14 +6,14 @@ public/*package*/ open class InnerClass {
|
||||
public/*package*/ final var field2: test.Outer.Inner2!
|
||||
}
|
||||
|
||||
internal final class Outer {
|
||||
public final class Outer {
|
||||
public constructor Outer()
|
||||
|
||||
internal final inner class Inner1 {
|
||||
public final inner class Inner1 {
|
||||
public constructor Inner1()
|
||||
}
|
||||
|
||||
internal final inner class Inner2 {
|
||||
public final inner class Inner2 {
|
||||
public constructor Inner2(/*0*/ kotlin.String)
|
||||
}
|
||||
}
|
||||
|
||||
+3
-3
@@ -7,14 +7,14 @@ public/*package*/ open class InnerClassConstructors {
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Outer {
|
||||
public final class Outer {
|
||||
public constructor Outer()
|
||||
|
||||
internal final inner class InnerGeneric {
|
||||
public final inner class InnerGeneric {
|
||||
public constructor InnerGeneric(/*0*/ kotlin.List<kotlin.String>)
|
||||
}
|
||||
|
||||
internal final inner class InnerPrimitive {
|
||||
public final inner class InnerPrimitive {
|
||||
public constructor InnerPrimitive(/*0*/ kotlin.Int)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,14 +7,14 @@ public/*package*/ open class InnerClassOfGeneric {
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Outer</*0*/ T> {
|
||||
public final class Outer</*0*/ T> {
|
||||
public constructor Outer</*0*/ T>()
|
||||
|
||||
internal final inner class Inner {
|
||||
public final inner class Inner {
|
||||
public constructor Inner(/*0*/ kotlin.List<T>)
|
||||
}
|
||||
|
||||
internal final inner class InnerSimple {
|
||||
public final inner class InnerSimple {
|
||||
public constructor InnerSimple()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final class Impossible</*0*/ P> {
|
||||
public final class Impossible</*0*/ P> {
|
||||
public constructor Impossible</*0*/ P>()
|
||||
}
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package test
|
||||
|
||||
internal fun bar(/*0*/ test.K<*>): kotlin.Unit
|
||||
public fun bar(/*0*/ test.K<*>): kotlin.Unit
|
||||
|
||||
internal open class K</*0*/ out T : test.K<T>> {
|
||||
public open class K</*0*/ out T : test.K<T>> {
|
||||
public constructor K</*0*/ out T : test.K<T>>()
|
||||
internal final fun foo(): test.K<*>
|
||||
internal final fun foo(/*0*/ test.K<*>): kotlin.Unit
|
||||
public final fun foo(): test.K<*>
|
||||
public final fun foo(/*0*/ test.K<*>): kotlin.Unit
|
||||
}
|
||||
|
||||
public open class StarProjection {
|
||||
@@ -13,8 +13,8 @@ public open class StarProjection {
|
||||
public/*package*/ open fun foo(/*0*/ test.K<*>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Sub : test.K<test.K<*>> {
|
||||
public final class Sub : test.K<test.K<*>> {
|
||||
public constructor Sub()
|
||||
internal final /*fake_override*/ fun foo(): test.K<*>
|
||||
internal final /*fake_override*/ fun foo(/*0*/ test.K<*>): kotlin.Unit
|
||||
public final /*fake_override*/ fun foo(): test.K<*>
|
||||
public final /*fake_override*/ fun foo(/*0*/ test.K<*>): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
public final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
enum entry OK
|
||||
|
||||
private constructor MyEnum()
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
internal final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
public final enum class MyEnum : kotlin.Enum<test.MyEnum> {
|
||||
enum entry ENTRY
|
||||
|
||||
private constructor MyEnum(/*0*/ kotlin.Deprecated(value = "") kotlin.Int)
|
||||
kotlin.Deprecated(value = "") internal final val ord: kotlin.Int
|
||||
kotlin.Deprecated(value = "") public final val ord: kotlin.Int
|
||||
protected final /*fake_override*/ fun clone(): kotlin.Any
|
||||
public final /*fake_override*/ fun compareTo(/*0*/ test.MyEnum): kotlin.Int
|
||||
internal final fun f(/*0*/ java.lang.Deprecated() kotlin.Int): kotlin.Unit
|
||||
public final fun f(/*0*/ java.lang.Deprecated() kotlin.Int): kotlin.Unit
|
||||
public final /*fake_override*/ fun name(): kotlin.String
|
||||
public final /*fake_override*/ fun ordinal(): kotlin.Int
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public open class DefaultArgumentInEnumConstructor {
|
||||
public/*package*/ final var entry: test.K!
|
||||
}
|
||||
|
||||
internal final enum class K : kotlin.Enum<test.K> {
|
||||
public final enum class K : kotlin.Enum<test.K> {
|
||||
enum entry ENTRY
|
||||
|
||||
private constructor K(/*0*/ kotlin.String = ...)
|
||||
|
||||
+1
-1
@@ -9,5 +9,5 @@ public final class BadClass {
|
||||
public constructor BadClass()
|
||||
private final fun </*0*/ D> bar(/*0*/ kotlin.List<D>): kotlin.Unit
|
||||
private final fun </*0*/ E : kotlin.Number, /*1*/ F : kotlin.MutableList<E>> baz(/*0*/ kotlin.List<F>): kotlin.Unit
|
||||
internal final fun foo(): kotlin.Unit
|
||||
public final fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun anyany(/*0*/ kotlin.Any, /*1*/ java.util.List<kotlin.String>): kotlin.Any
|
||||
public fun anyany(/*0*/ kotlin.Any, /*1*/ java.util.List<kotlin.String>): kotlin.Any
|
||||
|
||||
public/*package*/ open class Any {
|
||||
public/*package*/ constructor Any()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun ohMy(/*0*/ kotlin.Array<kotlin.IntArray>): kotlin.Array<kotlin.IntArray>
|
||||
public fun ohMy(/*0*/ kotlin.Array<kotlin.IntArray>): kotlin.Array<kotlin.IntArray>
|
||||
|
||||
public/*package*/ open class ArrayOfIntArray {
|
||||
public/*package*/ constructor ArrayOfIntArray()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun ohMy(/*0*/ kotlin.Array<kotlin.Array<kotlin.Int>>, /*1*/ java.util.List<kotlin.String>): kotlin.Array<kotlin.Array<kotlin.Int>>
|
||||
public fun ohMy(/*0*/ kotlin.Array<kotlin.Array<kotlin.Int>>, /*1*/ java.util.List<kotlin.String>): kotlin.Array<kotlin.Array<kotlin.Int>>
|
||||
|
||||
public/*package*/ open class ArrayOfIntArray {
|
||||
public/*package*/ constructor ArrayOfIntArray()
|
||||
|
||||
+3
-3
@@ -5,8 +5,8 @@ public open class ClashingSignaturesWithoutReturnType {
|
||||
public/*package*/ open fun test(/*0*/ kotlin.(Mutable)List<kotlin.String!>!, /*1*/ kotlin.(Mutable)List<kotlin.Int!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class K {
|
||||
public final class K {
|
||||
public constructor K()
|
||||
internal final fun foo(/*0*/ kotlin.List<kotlin.Int>): kotlin.Int
|
||||
internal final fun foo(/*0*/ kotlin.List<kotlin.String>): kotlin.String
|
||||
public final fun foo(/*0*/ kotlin.List<kotlin.Int>): kotlin.Int
|
||||
public final fun foo(/*0*/ kotlin.List<kotlin.String>): kotlin.String
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
internal final class Impl : test.Trait {
|
||||
public final class Impl : test.Trait {
|
||||
public constructor Impl()
|
||||
internal open val bar: kotlin.Int
|
||||
internal open fun foo(): kotlin.Unit
|
||||
public open val bar: kotlin.Int
|
||||
public open fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class JavaClass {
|
||||
@@ -13,13 +13,13 @@ public/*package*/ open class JavaClass {
|
||||
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Test : test.Trait {
|
||||
public final class Test : test.Trait {
|
||||
public constructor Test()
|
||||
internal open /*delegation*/ val bar: kotlin.Int
|
||||
internal open /*delegation*/ fun foo(): kotlin.Unit
|
||||
public open /*delegation*/ val bar: kotlin.Int
|
||||
public open /*delegation*/ fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal interface Trait {
|
||||
internal abstract val bar: kotlin.Int
|
||||
internal abstract fun foo(): kotlin.Unit
|
||||
public interface Trait {
|
||||
public abstract val bar: kotlin.Int
|
||||
public abstract fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun kotlin.String.noParam(): kotlin.Unit
|
||||
internal fun kotlin.String.param(/*0*/ kotlin.String): kotlin.Unit
|
||||
public fun kotlin.String.noParam(): kotlin.Unit
|
||||
public fun kotlin.String.param(/*0*/ kotlin.String): kotlin.Unit
|
||||
|
||||
public/*package*/ open class GenericArray {
|
||||
public/*package*/ constructor GenericArray()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ P> ffgg(/*0*/ kotlin.Array<P>): kotlin.Array<P>
|
||||
public fun </*0*/ P> ffgg(/*0*/ kotlin.Array<P>): kotlin.Array<P>
|
||||
|
||||
public/*package*/ open class GenericArray {
|
||||
public/*package*/ constructor GenericArray()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun f(): kotlin.String
|
||||
public fun f(): kotlin.String
|
||||
|
||||
public/*package*/ open class Hello {
|
||||
public/*package*/ constructor Hello()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun lll(/*0*/ kotlin.Int): kotlin.Int
|
||||
public fun lll(/*0*/ kotlin.Int): kotlin.Int
|
||||
|
||||
public/*package*/ open class Int {
|
||||
public/*package*/ constructor Int()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun doNothing(/*0*/ kotlin.IntArray, /*1*/ java.util.List<kotlin.String>): kotlin.IntArray
|
||||
public fun doNothing(/*0*/ kotlin.IntArray, /*1*/ java.util.List<kotlin.String>): kotlin.IntArray
|
||||
|
||||
public/*package*/ open class IntArray {
|
||||
public/*package*/ constructor IntArray()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun www(/*0*/ kotlin.Int = ...): kotlin.Int
|
||||
public fun www(/*0*/ kotlin.Int = ...): kotlin.Int
|
||||
|
||||
public/*package*/ open class IntWithDefault {
|
||||
public/*package*/ constructor IntWithDefault()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun doNothing(/*0*/ kotlin.Array<kotlin.Int>, /*1*/ java.util.List<kotlin.String>): kotlin.Array<kotlin.Int>
|
||||
public fun doNothing(/*0*/ kotlin.Array<kotlin.Int>, /*1*/ java.util.List<kotlin.String>): kotlin.Array<kotlin.Int>
|
||||
|
||||
public/*package*/ open class IntArray {
|
||||
public/*package*/ constructor IntArray()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun ggg(/*0*/ kotlin.List<kotlin.Int>): kotlin.List<kotlin.Int>
|
||||
public fun ggg(/*0*/ kotlin.List<kotlin.Int>): kotlin.List<kotlin.Int>
|
||||
|
||||
public/*package*/ open class ListOfInt {
|
||||
public/*package*/ constructor ListOfInt()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun ff(/*0*/ kotlin.List<kotlin.String>): kotlin.Int
|
||||
public fun ff(/*0*/ kotlin.List<kotlin.String>): kotlin.Int
|
||||
|
||||
public/*package*/ open class ListString {
|
||||
public/*package*/ constructor ListString()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ P> listOfT(/*0*/ kotlin.List<P>): kotlin.List<P>
|
||||
public fun </*0*/ P> listOfT(/*0*/ kotlin.List<P>): kotlin.List<P>
|
||||
|
||||
public/*package*/ open class ListOfT {
|
||||
public/*package*/ constructor ListOfT()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ K> fff(/*0*/ kotlin.Map<K, kotlin.String>): kotlin.Map<K, kotlin.String>
|
||||
public fun </*0*/ K> fff(/*0*/ kotlin.Map<K, kotlin.String>): kotlin.Map<K, kotlin.String>
|
||||
|
||||
public/*package*/ open class MapOfKString {
|
||||
public/*package*/ constructor MapOfKString()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun fff(/*0*/ kotlin.Map<kotlin.String, kotlin.Int?>): kotlin.Map<kotlin.String, kotlin.Int?>
|
||||
public fun fff(/*0*/ kotlin.Map<kotlin.String, kotlin.Int?>): kotlin.Map<kotlin.String, kotlin.Int?>
|
||||
|
||||
public/*package*/ open class MapOfKString {
|
||||
public/*package*/ constructor MapOfKString()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ P1 : kotlin.List<kotlin.String>> id(/*0*/ P1): P1
|
||||
public fun </*0*/ P1 : kotlin.List<kotlin.String>> id(/*0*/ P1): P1
|
||||
|
||||
public/*package*/ open class Question {
|
||||
public/*package*/ constructor Question()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun </*0*/ T : kotlin.String> id(/*0*/ T): T
|
||||
public fun </*0*/ T : kotlin.String> id(/*0*/ T): T
|
||||
|
||||
public/*package*/ open class Question {
|
||||
public/*package*/ constructor Question()
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
internal interface Trait {
|
||||
internal open fun generic(/*0*/ kotlin.List<kotlin.String>): kotlin.Unit
|
||||
internal open fun simple(): kotlin.Unit
|
||||
public interface Trait {
|
||||
public open fun generic(/*0*/ kotlin.List<kotlin.String>): kotlin.Unit
|
||||
public open fun simple(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ abstract class TraitImpl : test.Trait {
|
||||
public/*package*/ constructor TraitImpl()
|
||||
internal open /*fake_override*/ fun generic(/*0*/ kotlin.List<kotlin.String>): kotlin.Unit
|
||||
internal open /*fake_override*/ fun simple(): kotlin.Unit
|
||||
public open /*fake_override*/ fun generic(/*0*/ kotlin.List<kotlin.String>): kotlin.Unit
|
||||
public open /*fake_override*/ fun simple(): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun gg(/*0*/ kotlin.List<kotlin.String>, /*1*/ vararg kotlin.Int /*kotlin.IntArray*/): kotlin.List<kotlin.String>
|
||||
public fun gg(/*0*/ kotlin.List<kotlin.String>, /*1*/ vararg kotlin.Int /*kotlin.IntArray*/): kotlin.List<kotlin.String>
|
||||
|
||||
public/*package*/ open class Vararg {
|
||||
public/*package*/ constructor Vararg()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal fun f(): kotlin.Unit
|
||||
public fun f(): kotlin.Unit
|
||||
|
||||
public/*package*/ open class Void {
|
||||
public/*package*/ constructor Void()
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
kotlin.jvm.JvmName(name = "bar") internal fun foo(): kotlin.Unit
|
||||
kotlin.jvm.JvmName(name = "bar") public fun foo(): kotlin.Unit
|
||||
|
||||
public open class PlatformName {
|
||||
public constructor PlatformName()
|
||||
|
||||
Vendored
+7
-7
@@ -1,22 +1,22 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Byte> {
|
||||
public open class B : test.A<kotlin.Byte> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Byte
|
||||
public open fun foo(): kotlin.Byte
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Byte> {
|
||||
public abstract class C : test.A<kotlin.Byte> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Byte
|
||||
public abstract /*fake_override*/ fun foo(): kotlin.Byte
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Byte
|
||||
public open /*fake_override*/ fun foo(): kotlin.Byte
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
Vendored
+4
-4
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal final class B : test.A<kotlin.Int> {
|
||||
public final class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal final fun foo(): kotlin.Int
|
||||
public final fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
|
||||
+4
-4
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal final class B : test.A<kotlin.Int> {
|
||||
public final class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
|
||||
Vendored
+5
-5
@@ -1,16 +1,16 @@
|
||||
package test
|
||||
|
||||
internal interface A {
|
||||
internal abstract fun foo(): kotlin.Any
|
||||
public interface A {
|
||||
public abstract fun foo(): kotlin.Any
|
||||
}
|
||||
|
||||
internal open class B : test.A {
|
||||
public open class B : test.A {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test : test.B {
|
||||
public/*package*/ constructor Test()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
+5
-5
@@ -1,16 +1,16 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal final fun foo(): kotlin.Int
|
||||
public final fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class Test : test.B {
|
||||
public/*package*/ constructor Test()
|
||||
internal final /*fake_override*/ fun foo(): kotlin.Int
|
||||
public final /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
Vendored
+7
-7
@@ -1,22 +1,22 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T : kotlin.Comparable<T>> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T : kotlin.Comparable<T>> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int> {
|
||||
public abstract class C : test.A<kotlin.Int> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
public abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
+7
-7
@@ -1,22 +1,22 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T : kotlin.Number> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T : kotlin.Number> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int> {
|
||||
public abstract class C : test.A<kotlin.Int> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
public abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
+7
-7
@@ -1,22 +1,22 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int> {
|
||||
public open class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int> {
|
||||
public abstract class C : test.A<kotlin.Int> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
public abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
Vendored
+9
-9
@@ -1,25 +1,25 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal interface B : test.A<kotlin.Int> {
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
public interface B : test.A<kotlin.Int> {
|
||||
public abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal abstract class C : test.B {
|
||||
public abstract class C : test.B {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
public abstract /*fake_override*/ fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
internal open class D : test.C {
|
||||
public open class D : test.C {
|
||||
public constructor D()
|
||||
internal open fun foo(): kotlin.Int
|
||||
public open fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsD : test.D {
|
||||
public/*package*/ constructor ExtendsD()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public open /*fake_override*/ fun foo(): kotlin.Int
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
Vendored
+7
-7
@@ -1,22 +1,22 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal open class B : test.A<kotlin.Int?> {
|
||||
public open class B : test.A<kotlin.Int?> {
|
||||
public constructor B()
|
||||
internal open fun foo(): kotlin.Int?
|
||||
public open fun foo(): kotlin.Int?
|
||||
}
|
||||
|
||||
internal abstract class C : test.A<kotlin.Int?> {
|
||||
public abstract class C : test.A<kotlin.Int?> {
|
||||
public constructor C()
|
||||
internal abstract /*fake_override*/ fun foo(): kotlin.Int?
|
||||
public abstract /*fake_override*/ fun foo(): kotlin.Int?
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
public/*package*/ constructor ExtendsB()
|
||||
internal open /*fake_override*/ fun foo(): kotlin.Int?
|
||||
public open /*fake_override*/ fun foo(): kotlin.Int?
|
||||
public/*package*/ open fun test(): kotlin.Unit
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
internal interface A</*0*/ T> {
|
||||
internal abstract fun foo(): T
|
||||
public interface A</*0*/ T> {
|
||||
public abstract fun foo(): T
|
||||
}
|
||||
|
||||
internal abstract class B : test.A<kotlin.Int> {
|
||||
public abstract class B : test.A<kotlin.Int> {
|
||||
public constructor B()
|
||||
internal abstract fun foo(): kotlin.Int
|
||||
public abstract fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
public/*package*/ open class ExtendsB : test.B {
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
internal final class E1 : java.lang.Exception {
|
||||
public final class E1 : java.lang.Exception {
|
||||
public constructor E1()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class E2 : java.lang.Exception {
|
||||
public final class E2 : java.lang.Exception {
|
||||
public constructor E2()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
@@ -19,9 +19,9 @@ public/*package*/ open class JavaClass {
|
||||
public/*package*/ open fun testMethod(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Test {
|
||||
public final class Test {
|
||||
public constructor Test()
|
||||
internal final fun none(): kotlin.Unit
|
||||
internal final fun one(): kotlin.Unit
|
||||
internal final fun two(): kotlin.Unit
|
||||
public final fun none(): kotlin.Unit
|
||||
public final fun one(): kotlin.Unit
|
||||
public final fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
internal final class E1 : java.lang.Exception {
|
||||
public final class E1 : java.lang.Exception {
|
||||
public constructor E1()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class E2 : java.lang.Exception {
|
||||
public final class E2 : java.lang.Exception {
|
||||
public constructor E2()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
@@ -19,18 +19,18 @@ public/*package*/ open class JavaClass {
|
||||
public/*package*/ open fun testMethod(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class None {
|
||||
public final class None {
|
||||
public constructor None()
|
||||
}
|
||||
|
||||
internal final class One {
|
||||
public final class One {
|
||||
public constructor One()
|
||||
}
|
||||
|
||||
internal final class OneWithParam {
|
||||
public final class OneWithParam {
|
||||
public constructor OneWithParam(/*0*/ kotlin.Int)
|
||||
}
|
||||
|
||||
internal final class Two {
|
||||
public final class Two {
|
||||
public constructor Two()
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
package test
|
||||
|
||||
kotlin.jvm.JvmOverloads() internal fun one(/*0*/ kotlin.Int = ...): kotlin.Unit
|
||||
kotlin.jvm.JvmOverloads() public fun one(/*0*/ kotlin.Int = ...): kotlin.Unit
|
||||
|
||||
internal final class E1 : java.lang.Exception {
|
||||
public final class E1 : java.lang.Exception {
|
||||
public constructor E1()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
@@ -14,7 +14,7 @@ public/*package*/ open class JavaClass {
|
||||
public/*package*/ open fun testMethod(/*0*/ test.One!): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class One {
|
||||
public final class One {
|
||||
public constructor One(/*0*/ kotlin.Int = ...)
|
||||
internal final fun one(/*0*/ kotlin.Int = ...): kotlin.Unit
|
||||
public final fun one(/*0*/ kotlin.Int = ...): kotlin.Unit
|
||||
}
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
package test
|
||||
|
||||
internal final class E1 : java.lang.Exception {
|
||||
public final class E1 : java.lang.Exception {
|
||||
public constructor E1()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class E2 : java.lang.Exception {
|
||||
public final class E2 : java.lang.Exception {
|
||||
public constructor E2()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Impl : test.Trait {
|
||||
public final class Impl : test.Trait {
|
||||
public constructor Impl()
|
||||
internal open fun none(): kotlin.Unit
|
||||
internal open fun one(): kotlin.Unit
|
||||
internal open fun two(): kotlin.Unit
|
||||
public open fun none(): kotlin.Unit
|
||||
public open fun one(): kotlin.Unit
|
||||
public open fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class JavaClass {
|
||||
@@ -26,15 +26,15 @@ public/*package*/ open class JavaClass {
|
||||
public/*package*/ open fun testMethod(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Test : test.Trait {
|
||||
public final class Test : test.Trait {
|
||||
public constructor Test()
|
||||
internal open /*delegation*/ fun none(): kotlin.Unit
|
||||
internal open /*delegation*/ fun one(): kotlin.Unit
|
||||
internal open /*delegation*/ fun two(): kotlin.Unit
|
||||
public open /*delegation*/ fun none(): kotlin.Unit
|
||||
public open /*delegation*/ fun one(): kotlin.Unit
|
||||
public open /*delegation*/ fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal interface Trait {
|
||||
internal abstract fun none(): kotlin.Unit
|
||||
internal abstract fun one(): kotlin.Unit
|
||||
internal abstract fun two(): kotlin.Unit
|
||||
public interface Trait {
|
||||
public abstract fun none(): kotlin.Unit
|
||||
public abstract fun one(): kotlin.Unit
|
||||
public abstract fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
+5
-5
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
internal interface Base</*0*/ T> {
|
||||
internal open fun one(/*0*/ T): kotlin.Unit
|
||||
public interface Base</*0*/ T> {
|
||||
public open fun one(/*0*/ T): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Derived : test.Base<kotlin.String> {
|
||||
public final class Derived : test.Base<kotlin.String> {
|
||||
public constructor Derived()
|
||||
internal open /*fake_override*/ fun one(/*0*/ kotlin.String): kotlin.Unit
|
||||
public open /*fake_override*/ fun one(/*0*/ kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class E1 : java.lang.Exception {
|
||||
public final class E1 : java.lang.Exception {
|
||||
public constructor E1()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
package test
|
||||
|
||||
internal fun none(): kotlin.Unit
|
||||
internal fun one(): kotlin.Unit
|
||||
internal fun two(): kotlin.Unit
|
||||
public fun none(): kotlin.Unit
|
||||
public fun one(): kotlin.Unit
|
||||
public fun two(): kotlin.Unit
|
||||
|
||||
internal final class E1 : java.lang.Exception {
|
||||
public final class E1 : java.lang.Exception {
|
||||
public constructor E1()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class E2 : java.lang.Exception {
|
||||
public final class E2 : java.lang.Exception {
|
||||
public constructor E2()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
|
||||
+10
-10
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
internal final class E1 : java.lang.Exception {
|
||||
public final class E1 : java.lang.Exception {
|
||||
public constructor E1()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
public final /*fake_override*/ fun printStackTrace(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class E2 : java.lang.Exception {
|
||||
public final class E2 : java.lang.Exception {
|
||||
public constructor E2()
|
||||
public final /*fake_override*/ fun getCause(): kotlin.Throwable?
|
||||
public final /*fake_override*/ fun getMessage(): kotlin.String?
|
||||
@@ -19,15 +19,15 @@ public/*package*/ open class JavaClass {
|
||||
public/*package*/ open fun testMethod(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal final class Test : test.Trait {
|
||||
public final class Test : test.Trait {
|
||||
public constructor Test()
|
||||
internal open /*fake_override*/ fun none(): kotlin.Unit
|
||||
internal open /*fake_override*/ fun one(): kotlin.Unit
|
||||
internal open /*fake_override*/ fun two(): kotlin.Unit
|
||||
public open /*fake_override*/ fun none(): kotlin.Unit
|
||||
public open /*fake_override*/ fun one(): kotlin.Unit
|
||||
public open /*fake_override*/ fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
internal interface Trait {
|
||||
internal open fun none(): kotlin.Unit
|
||||
internal open fun one(): kotlin.Unit
|
||||
internal open fun two(): kotlin.Unit
|
||||
public interface Trait {
|
||||
public open fun none(): kotlin.Unit
|
||||
public open fun one(): kotlin.Unit
|
||||
public open fun two(): kotlin.Unit
|
||||
}
|
||||
|
||||
+7
-7
@@ -1,17 +1,17 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
public fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
public constructor A()
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val b: kotlin.String
|
||||
kotlin.platform.platformStatic() internal final fun test1(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun test2(): kotlin.Unit
|
||||
internal final fun test3(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun kotlin.String.test4(): kotlin.Unit
|
||||
public final val b: kotlin.String
|
||||
kotlin.platform.platformStatic() public final fun test1(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() public final fun test2(): kotlin.Unit
|
||||
public final fun test3(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() public final fun kotlin.String.test4(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+4
-4
@@ -1,14 +1,14 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
public fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
public constructor A()
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
kotlin.platform.platformStatic() internal final val b: kotlin.String
|
||||
internal final var test.A.c: kotlin.String
|
||||
kotlin.platform.platformStatic() public final val b: kotlin.String
|
||||
public final var test.A.c: kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
public fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal object A {
|
||||
public object A {
|
||||
private constructor A()
|
||||
internal final val b: kotlin.String
|
||||
kotlin.platform.platformStatic() internal final fun test1(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun test2(): kotlin.Unit
|
||||
internal final fun test3(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() internal final fun kotlin.String.test4(): kotlin.Unit
|
||||
public final val b: kotlin.String
|
||||
kotlin.platform.platformStatic() public final fun test1(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() public final fun test2(): kotlin.Unit
|
||||
public final fun test3(): kotlin.Unit
|
||||
kotlin.platform.platformStatic() public final fun kotlin.String.test4(): kotlin.Unit
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
|
||||
+4
-4
@@ -1,11 +1,11 @@
|
||||
package test
|
||||
|
||||
internal fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
public fun main(/*0*/ kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
|
||||
internal object A {
|
||||
public object A {
|
||||
private constructor A()
|
||||
kotlin.platform.platformStatic() internal final val b: kotlin.String
|
||||
internal final var test.A.c: kotlin.String
|
||||
kotlin.platform.platformStatic() public final val b: kotlin.String
|
||||
public final var test.A.c: kotlin.String
|
||||
}
|
||||
|
||||
public/*package*/ open class Test {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
internal val kotlin.String.val_: kotlin.String
|
||||
internal var kotlin.String.var_: kotlin.String
|
||||
public val kotlin.String.val_: kotlin.String
|
||||
public var kotlin.String.var_: kotlin.String
|
||||
|
||||
public/*package*/ open class GenericArray {
|
||||
public/*package*/ constructor GenericArray()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal val </*0*/ K, /*1*/ V> test: kotlin.Map<K, V>
|
||||
public val </*0*/ K, /*1*/ V> test: kotlin.Map<K, V>
|
||||
|
||||
public/*package*/ open class GenericProperty {
|
||||
public/*package*/ constructor GenericProperty()
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal var v: kotlin.Int
|
||||
public var v: kotlin.Int
|
||||
|
||||
public open class PlatformName {
|
||||
public constructor PlatformName()
|
||||
|
||||
@@ -3,11 +3,11 @@ package test
|
||||
public sealed class Season {
|
||||
private constructor Season()
|
||||
|
||||
internal final class Cold : test.Season {
|
||||
public final class Cold : test.Season {
|
||||
public constructor Cold()
|
||||
}
|
||||
|
||||
internal final class Warm : test.Season {
|
||||
public final class Warm : test.Season {
|
||||
public constructor Warm()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,11 +3,11 @@ package test
|
||||
public sealed class Season {
|
||||
private constructor Season()
|
||||
|
||||
internal final class Cold : test.Season {
|
||||
public final class Cold : test.Season {
|
||||
public constructor Cold()
|
||||
}
|
||||
|
||||
internal final class Warm : test.Season {
|
||||
public final class Warm : test.Season {
|
||||
public constructor Warm()
|
||||
}
|
||||
}
|
||||
|
||||
+22
-22
@@ -1,55 +1,55 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class AByte : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AByte : kotlin.Annotation {
|
||||
public constructor AByte(/*0*/ kotlin.Byte)
|
||||
internal final val value: kotlin.Byte
|
||||
public final val value: kotlin.Byte
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AChar : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AChar : kotlin.Annotation {
|
||||
public constructor AChar(/*0*/ kotlin.Char)
|
||||
internal final val value: kotlin.Char
|
||||
public final val value: kotlin.Char
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ADouble : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ADouble : kotlin.Annotation {
|
||||
public constructor ADouble(/*0*/ kotlin.Double)
|
||||
internal final val value: kotlin.Double
|
||||
public final val value: kotlin.Double
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AFloat : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AFloat : kotlin.Annotation {
|
||||
public constructor AFloat(/*0*/ kotlin.Float)
|
||||
internal final val value: kotlin.Float
|
||||
public final val value: kotlin.Float
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AInt : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AInt : kotlin.Annotation {
|
||||
public constructor AInt(/*0*/ kotlin.Int)
|
||||
internal final val value: kotlin.Int
|
||||
public final val value: kotlin.Int
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ALong : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ALong : kotlin.Annotation {
|
||||
public constructor ALong(/*0*/ kotlin.Long)
|
||||
internal final val value: kotlin.Long
|
||||
public final val value: kotlin.Long
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AString : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AString : kotlin.Annotation {
|
||||
public constructor AString(/*0*/ kotlin.String)
|
||||
internal final val value: kotlin.String
|
||||
public final val value: kotlin.String
|
||||
}
|
||||
|
||||
test.AString(value = "Test") test.AChar(value = \u0063 ('c')) test.AInt(value = 10) test.AByte(value = 11) test.ALong(value = 12.toLong()) test.ADouble(value = 1.2.toDouble()) test.AFloat(value = 1.3.toFloat()) public open class AnnotationClass {
|
||||
public constructor AnnotationClass()
|
||||
}
|
||||
|
||||
internal final class Test {
|
||||
public final class Test {
|
||||
public constructor Test()
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val vbyte: kotlin.Byte
|
||||
internal final val vchar: kotlin.Char
|
||||
internal final val vdouble: kotlin.Double
|
||||
internal final val vfloat: kotlin.Float
|
||||
internal final val vint: kotlin.Int
|
||||
internal final val vlong: kotlin.Long
|
||||
internal final val vstring: kotlin.String
|
||||
public final val vbyte: kotlin.Byte
|
||||
public final val vchar: kotlin.Char
|
||||
public final val vdouble: kotlin.Double
|
||||
public final val vfloat: kotlin.Float
|
||||
public final val vint: kotlin.Int
|
||||
public final val vlong: kotlin.Long
|
||||
public final val vstring: kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
+22
-22
@@ -1,54 +1,54 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class AByte : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AByte : kotlin.Annotation {
|
||||
public constructor AByte(/*0*/ kotlin.Byte)
|
||||
internal final val value: kotlin.Byte
|
||||
public final val value: kotlin.Byte
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AChar : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AChar : kotlin.Annotation {
|
||||
public constructor AChar(/*0*/ kotlin.Char)
|
||||
internal final val value: kotlin.Char
|
||||
public final val value: kotlin.Char
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ADouble : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ADouble : kotlin.Annotation {
|
||||
public constructor ADouble(/*0*/ kotlin.Double)
|
||||
internal final val value: kotlin.Double
|
||||
public final val value: kotlin.Double
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AFloat : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AFloat : kotlin.Annotation {
|
||||
public constructor AFloat(/*0*/ kotlin.Float)
|
||||
internal final val value: kotlin.Float
|
||||
public final val value: kotlin.Float
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AInt : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AInt : kotlin.Annotation {
|
||||
public constructor AInt(/*0*/ kotlin.Int)
|
||||
internal final val value: kotlin.Int
|
||||
public final val value: kotlin.Int
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ALong : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ALong : kotlin.Annotation {
|
||||
public constructor ALong(/*0*/ kotlin.Long)
|
||||
internal final val value: kotlin.Long
|
||||
public final val value: kotlin.Long
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class AString : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class AString : kotlin.Annotation {
|
||||
public constructor AString(/*0*/ kotlin.String)
|
||||
internal final val value: kotlin.String
|
||||
public final val value: kotlin.String
|
||||
}
|
||||
|
||||
test.AString(value = "Test") test.AChar(value = \u0063 ('c')) test.AInt(value = 10) test.AByte(value = 11) test.ALong(value = 12.toLong()) test.ADouble(value = 1.2.toDouble()) test.AFloat(value = 1.3.toFloat()) public open class AnnotationTrait {
|
||||
public constructor AnnotationTrait()
|
||||
}
|
||||
|
||||
internal interface Test {
|
||||
public interface Test {
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val vbyte: kotlin.Byte
|
||||
internal final val vchar: kotlin.Char
|
||||
internal final val vdouble: kotlin.Double
|
||||
internal final val vfloat: kotlin.Float
|
||||
internal final val vint: kotlin.Int
|
||||
internal final val vlong: kotlin.Long
|
||||
internal final val vstring: kotlin.String
|
||||
public final val vbyte: kotlin.Byte
|
||||
public final val vchar: kotlin.Char
|
||||
public final val vdouble: kotlin.Double
|
||||
public final val vfloat: kotlin.Float
|
||||
public final val vint: kotlin.Int
|
||||
public final val vlong: kotlin.Long
|
||||
public final val vstring: kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package test
|
||||
|
||||
internal final class KotlinClass {
|
||||
public final class KotlinClass {
|
||||
public constructor KotlinClass()
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
internal final val FOO: kotlin.Int
|
||||
public final val FOO: kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final class Test {
|
||||
public final class Test {
|
||||
public constructor Test()
|
||||
|
||||
public companion object Companion {
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal interface Test {
|
||||
public interface Test {
|
||||
|
||||
public companion object Companion {
|
||||
private constructor Companion()
|
||||
|
||||
@@ -4,6 +4,6 @@ test.meta() public/*package*/ final class MyAnn : kotlin.Annotation {
|
||||
public/*package*/ constructor MyAnn()
|
||||
}
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.ANNOTATION_CLASS}) kotlin.annotation.annotation() internal final class meta : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.ANNOTATION_CLASS}) kotlin.annotation.annotation() public final class meta : kotlin.Annotation {
|
||||
public constructor meta()
|
||||
}
|
||||
|
||||
@@ -5,6 +5,6 @@ test.base() public/*package*/ open class My {
|
||||
test.base() public/*package*/ open fun foo(/*0*/ test.base() kotlin.Int): kotlin.Int
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class base : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class base : kotlin.Annotation {
|
||||
public constructor base()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.CLASSIFIER}) kotlin.annotation.annotation() internal final class classifier : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.CLASSIFIER}) kotlin.annotation.annotation() public final class classifier : kotlin.Annotation {
|
||||
public constructor classifier()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.CONSTRUCTOR}) kotlin.annotation.annotation() internal final class constructor : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.CONSTRUCTOR}) kotlin.annotation.annotation() public final class constructor : kotlin.Annotation {
|
||||
public constructor constructor()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {}) kotlin.annotation.annotation() internal final class empty : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {}) kotlin.annotation.annotation() public final class empty : kotlin.Annotation {
|
||||
public constructor empty()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.FIELD}) kotlin.annotation.annotation() internal final class field : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.FIELD}) kotlin.annotation.annotation() public final class field : kotlin.Annotation {
|
||||
public constructor field()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.FUNCTION}) kotlin.annotation.annotation() internal final class function : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.FUNCTION}) kotlin.annotation.annotation() public final class function : kotlin.Annotation {
|
||||
public constructor function()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.PROPERTY_GETTER}) kotlin.annotation.annotation() internal final class getter : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.PROPERTY_GETTER}) kotlin.annotation.annotation() public final class getter : kotlin.Annotation {
|
||||
public constructor getter()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.LOCAL_VARIABLE}) kotlin.annotation.annotation() internal final class local : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.LOCAL_VARIABLE}) kotlin.annotation.annotation() public final class local : kotlin.Annotation {
|
||||
public constructor local()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.CLASSIFIER, AnnotationTarget.FUNCTION}) kotlin.annotation.annotation() internal final class multiple : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.CLASSIFIER, AnnotationTarget.FUNCTION}) kotlin.annotation.annotation() public final class multiple : kotlin.Annotation {
|
||||
public constructor multiple()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.VALUE_PARAMETER}) kotlin.annotation.annotation() internal final class parameter : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.VALUE_PARAMETER}) kotlin.annotation.annotation() public final class parameter : kotlin.Annotation {
|
||||
public constructor parameter()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.PROPERTY}) kotlin.annotation.annotation() internal final class property : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.PROPERTY}) kotlin.annotation.annotation() public final class property : kotlin.Annotation {
|
||||
public constructor property()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.PROPERTY_SETTER}) kotlin.annotation.annotation() internal final class setter : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.PROPERTY_SETTER}) kotlin.annotation.annotation() public final class setter : kotlin.Annotation {
|
||||
public constructor setter()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user