fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
+3
-3
@@ -1,11 +1,11 @@
|
||||
package test
|
||||
|
||||
internal final class ClassObjectDeclaresProperty {
|
||||
public final class ClassObjectDeclaresProperty {
|
||||
/*primary*/ public constructor ClassObjectDeclaresProperty()
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
internal final val i: kotlin.Int = 1
|
||||
internal final fun <get-i>(): kotlin.Int
|
||||
public final val i: kotlin.Int = 1
|
||||
public final fun <get-i>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
internal final class ClassObjectDeclaresProperty {
|
||||
public final class ClassObjectDeclaresProperty {
|
||||
/*primary*/ public constructor ClassObjectDeclaresProperty()
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
internal final var s: kotlin.String
|
||||
internal final fun <get-s>(): kotlin.String
|
||||
internal final fun <set-s>(/*0*/ <set-?>: kotlin.String): kotlin.Unit
|
||||
public final var s: kotlin.String
|
||||
public final fun <get-s>(): kotlin.String
|
||||
public final fun <set-s>(/*0*/ <set-?>: kotlin.String): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final class Int {
|
||||
public final class Int {
|
||||
/*primary*/ public constructor Int()
|
||||
|
||||
public companion object Companion {
|
||||
@@ -11,7 +11,7 @@ internal final class Int {
|
||||
public final class Outer {
|
||||
/*primary*/ public constructor Outer()
|
||||
|
||||
internal final class Int {
|
||||
public final class Int {
|
||||
/*primary*/ public constructor Int()
|
||||
|
||||
public companion object Companion {
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
internal interface Bbb {
|
||||
public interface Bbb {
|
||||
}
|
||||
|
||||
internal final class ClassObjectextendsTrait {
|
||||
public final class ClassObjectextendsTrait {
|
||||
/*primary*/ public constructor ClassObjectextendsTrait()
|
||||
|
||||
public companion object Companion : test.Bbb {
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
internal interface Bbb</*0*/ P> {
|
||||
public interface Bbb</*0*/ P> {
|
||||
}
|
||||
|
||||
internal final class ClassObjectExtendsTraitWithTP {
|
||||
public final class ClassObjectExtendsTraitWithTP {
|
||||
/*primary*/ public constructor ClassObjectExtendsTraitWithTP()
|
||||
|
||||
public companion object Companion : test.Bbb<kotlin.String> {
|
||||
|
||||
+5
-5
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
internal final val other: kotlin.Int = 1
|
||||
internal final fun <get-other>(): kotlin.Int
|
||||
public final val other: kotlin.Int = 1
|
||||
public final fun <get-other>(): kotlin.Int
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
internal final val some: kotlin.Int = 1
|
||||
internal final fun <get-some>(): kotlin.Int
|
||||
public final val some: kotlin.Int = 1
|
||||
public final fun <get-some>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
internal final class A : test.T {
|
||||
public final class A : test.T {
|
||||
/*primary*/ public constructor A()
|
||||
internal open override /*1*/ fun foo(): kotlin.Int
|
||||
public open override /*1*/ fun foo(): kotlin.Int
|
||||
|
||||
public companion object Companion : test.T {
|
||||
/*primary*/ private constructor Companion()
|
||||
internal open override /*1*/ /*delegation*/ fun foo(): kotlin.Int
|
||||
public open override /*1*/ /*delegation*/ fun foo(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
internal interface T {
|
||||
internal abstract fun foo(): kotlin.Int
|
||||
public interface T {
|
||||
public abstract fun foo(): kotlin.Int
|
||||
}
|
||||
|
||||
+5
-5
@@ -1,19 +1,19 @@
|
||||
package test
|
||||
|
||||
internal final class TestFirst {
|
||||
public final class TestFirst {
|
||||
/*primary*/ public constructor TestFirst()
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
internal final fun testing(/*0*/ a: test.TestFirst.InnerClass): kotlin.Int
|
||||
internal final fun testing(/*0*/ a: test.TestFirst.NotInnerClass): kotlin.Int
|
||||
public final fun testing(/*0*/ a: test.TestFirst.InnerClass): kotlin.Int
|
||||
public final fun testing(/*0*/ a: test.TestFirst.NotInnerClass): kotlin.Int
|
||||
}
|
||||
|
||||
internal final inner class InnerClass {
|
||||
public final inner class InnerClass {
|
||||
/*primary*/ public constructor InnerClass()
|
||||
}
|
||||
|
||||
internal final inner class NotInnerClass {
|
||||
public final inner class NotInnerClass {
|
||||
/*primary*/ public constructor NotInnerClass()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
internal final class NamedClassObject {
|
||||
public final class NamedClassObject {
|
||||
/*primary*/ public constructor NamedClassObject()
|
||||
|
||||
public companion object Named {
|
||||
/*primary*/ private constructor Named()
|
||||
internal final fun f(): kotlin.Int
|
||||
public final fun f(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final class SimpleClassObject {
|
||||
public final class SimpleClassObject {
|
||||
/*primary*/ public constructor SimpleClassObject()
|
||||
|
||||
public companion object Companion {
|
||||
|
||||
+5
-5
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal final class Test {
|
||||
public final class Test {
|
||||
/*primary*/ public constructor Test()
|
||||
|
||||
public companion object Companion {
|
||||
@@ -12,15 +12,15 @@ internal final class Test {
|
||||
protected final fun <set-prop2>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final val prop3: kotlin.Int = 12
|
||||
public final fun <get-prop3>(): kotlin.Int
|
||||
internal final var prop4: kotlin.Int
|
||||
internal final fun <get-prop4>(): kotlin.Int
|
||||
internal final fun <set-prop4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop4: kotlin.Int
|
||||
public final fun <get-prop4>(): kotlin.Int
|
||||
public final fun <set-prop4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop5: kotlin.Int
|
||||
public final fun <get-prop5>(): kotlin.Int
|
||||
public final fun <set-prop5>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop7: kotlin.Int
|
||||
public final fun <get-prop7>(): kotlin.Int
|
||||
public final fun <set-prop7>(/*0*/ i: kotlin.Int): kotlin.Unit
|
||||
internal final fun incProp4(): kotlin.Unit
|
||||
public final fun incProp4(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
+5
-5
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
internal interface Test {
|
||||
public interface Test {
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
@@ -11,15 +11,15 @@ internal interface Test {
|
||||
protected final fun <set-prop2>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final val prop3: kotlin.Int = 12
|
||||
public final fun <get-prop3>(): kotlin.Int
|
||||
internal final var prop4: kotlin.Int
|
||||
internal final fun <get-prop4>(): kotlin.Int
|
||||
internal final fun <set-prop4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop4: kotlin.Int
|
||||
public final fun <get-prop4>(): kotlin.Int
|
||||
public final fun <set-prop4>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop5: kotlin.Int
|
||||
public final fun <get-prop5>(): kotlin.Int
|
||||
public final fun <set-prop5>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
public final var prop7: kotlin.Int
|
||||
public final fun <get-prop7>(): kotlin.Int
|
||||
public final fun <set-prop7>(/*0*/ i: kotlin.Int): kotlin.Unit
|
||||
internal final fun incProp4(): kotlin.Unit
|
||||
public final fun incProp4(): kotlin.Unit
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user