fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
+5
-5
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class B : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
/*primary*/ public constructor B()
|
||||
}
|
||||
|
||||
internal final class Class {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class(/*0*/ test.A() x: kotlin.Int, /*1*/ test.B() y: kotlin.String)
|
||||
internal final val x: kotlin.Int
|
||||
internal final fun <get-x>(): kotlin.Int
|
||||
public final val x: kotlin.Int
|
||||
public final fun <get-x>(): kotlin.Int
|
||||
}
|
||||
|
||||
+7
-7
@@ -1,19 +1,19 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class B : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
/*primary*/ public constructor B()
|
||||
}
|
||||
|
||||
internal final enum class E : kotlin.Enum<test.E> {
|
||||
public final enum class E : kotlin.Enum<test.E> {
|
||||
/*primary*/ private constructor E(/*0*/ test.A() x: kotlin.String, /*1*/ test.B() y: kotlin.Int)
|
||||
internal final val x: kotlin.String
|
||||
internal final fun <get-x>(): kotlin.String
|
||||
internal final val y: kotlin.Int
|
||||
internal final fun <get-y>(): kotlin.Int
|
||||
public final val x: kotlin.String
|
||||
public final fun <get-x>(): kotlin.String
|
||||
public final val y: kotlin.Int
|
||||
public final fun <get-y>(): kotlin.Int
|
||||
protected final override /*1*/ /*fake_override*/ fun clone(): kotlin.Any
|
||||
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.E): kotlin.Int
|
||||
public final override /*1*/ /*fake_override*/ fun name(): kotlin.String
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun kotlin.Int.foo(/*0*/ test.A() x: kotlin.Int): kotlin.Unit
|
||||
public fun kotlin.Int.foo(/*0*/ test.A() x: kotlin.Int): kotlin.Unit
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
Vendored
+3
-3
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
internal final class Class {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
internal final fun kotlin.String.foo(/*0*/ test.Anno() x: kotlin.Int): kotlin.Int
|
||||
public final fun kotlin.String.foo(/*0*/ test.Anno() x: kotlin.Int): kotlin.Int
|
||||
}
|
||||
|
||||
Vendored
+5
-5
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
internal final class Class {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
internal final var kotlin.Int.foo: kotlin.Int
|
||||
internal final fun kotlin.Int.<get-foo>(): kotlin.Int
|
||||
internal final fun kotlin.Int.<set-foo>(/*0*/ test.A() value: kotlin.Int): kotlin.Unit
|
||||
public final var kotlin.Int.foo: kotlin.Int
|
||||
public final fun kotlin.Int.<get-foo>(): kotlin.Int
|
||||
public final fun kotlin.Int.<set-foo>(/*0*/ test.A() value: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
internal final class Class {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
internal final fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Unit
|
||||
public final fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
internal interface Trait {
|
||||
internal open fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Int
|
||||
public interface Trait {
|
||||
public open fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Int
|
||||
}
|
||||
|
||||
+10
-10
@@ -1,23 +1,23 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A(/*0*/ s: kotlin.String)
|
||||
internal final val s: kotlin.String
|
||||
internal final fun <get-s>(): kotlin.String
|
||||
public final val s: kotlin.String
|
||||
public final fun <get-s>(): kotlin.String
|
||||
}
|
||||
|
||||
internal final class Outer {
|
||||
public final class Outer {
|
||||
/*primary*/ public constructor Outer()
|
||||
|
||||
internal final inner class Inner {
|
||||
public final inner class Inner {
|
||||
/*primary*/ public constructor Inner(/*0*/ test.A(s = "inner") y: kotlin.String)
|
||||
internal final val y: kotlin.String
|
||||
internal final fun <get-y>(): kotlin.String
|
||||
public final val y: kotlin.String
|
||||
public final fun <get-y>(): kotlin.String
|
||||
}
|
||||
|
||||
internal final class Nested {
|
||||
public final class Nested {
|
||||
/*primary*/ public constructor Nested(/*0*/ test.A(s = "nested") x: kotlin.String)
|
||||
internal final val x: kotlin.String
|
||||
internal final fun <get-x>(): kotlin.String
|
||||
public final val x: kotlin.String
|
||||
public final fun <get-x>(): kotlin.String
|
||||
}
|
||||
}
|
||||
|
||||
+6
-6
@@ -1,20 +1,20 @@
|
||||
package test
|
||||
|
||||
internal fun bar(/*0*/ test.A() test.B() test.C() test.D() x: kotlin.Int): kotlin.Unit
|
||||
internal fun foo(/*0*/ test.A() test.B() x: kotlin.Int, /*1*/ test.A() test.C() y: kotlin.Double, /*2*/ test.B() test.C() test.D() z: kotlin.String): kotlin.Unit
|
||||
public fun bar(/*0*/ test.A() test.B() test.C() test.D() x: kotlin.Int): kotlin.Unit
|
||||
public fun foo(/*0*/ test.A() test.B() x: kotlin.Int, /*1*/ test.A() test.C() y: kotlin.Double, /*2*/ test.B() test.C() test.D() z: kotlin.String): kotlin.Unit
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class B : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
/*primary*/ public constructor B()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class C : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class C : kotlin.Annotation {
|
||||
/*primary*/ public constructor C()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class D : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class D : kotlin.Annotation {
|
||||
/*primary*/ public constructor D()
|
||||
}
|
||||
|
||||
+5
-5
@@ -1,12 +1,12 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
internal final class Class {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
internal final var foo: kotlin.Int
|
||||
internal final fun <get-foo>(): kotlin.Int
|
||||
internal final fun <set-foo>(/*0*/ test.A() value: kotlin.Int): kotlin.Unit
|
||||
public final var foo: kotlin.Int
|
||||
public final fun <get-foo>(): kotlin.Int
|
||||
public final fun <set-foo>(/*0*/ test.A() value: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
internal fun foo(/*0*/ test.Anno() x: kotlin.Int): kotlin.Unit
|
||||
public fun foo(/*0*/ test.Anno() x: kotlin.Int): kotlin.Unit
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
Vendored
+5
-5
@@ -1,13 +1,13 @@
|
||||
package test
|
||||
|
||||
internal var foo: kotlin.Int
|
||||
internal fun <get-foo>(): kotlin.Int
|
||||
internal fun <set-foo>(/*0*/ test.A() test.B() value: kotlin.Int): kotlin.Unit
|
||||
public var foo: kotlin.Int
|
||||
public fun <get-foo>(): kotlin.Int
|
||||
public fun <set-foo>(/*0*/ test.A() test.B() value: kotlin.Int): kotlin.Unit
|
||||
|
||||
kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class B : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
/*primary*/ public constructor B()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user