fix tests in org.jetbrains.kotlin.jvm.compiler
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user