fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
+5
-5
@@ -1,25 +1,25 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno1 : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno1 : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno1()
|
||||
}
|
||||
|
||||
internal final class B {
|
||||
public final class B {
|
||||
/*primary*/ public constructor B()
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno2 : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno2 : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno2()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
test.A.Companion.Anno1() test.A.Companion.B.Anno2() internal final class C {
|
||||
test.A.Companion.Anno1() test.A.Companion.B.Anno2() public final class C {
|
||||
/*primary*/ public constructor C()
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,16 +1,16 @@
|
||||
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()
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
|
||||
test.Anno() internal final class Nested {
|
||||
test.Anno() public final class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -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()
|
||||
|
||||
test.Anno() public companion object Companion {
|
||||
|
||||
Vendored
+4
-4
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
internal final class B {
|
||||
public final class B {
|
||||
/*primary*/ public constructor B()
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
internal final val TEST: kotlin.Int = 1
|
||||
internal final fun <get-TEST>(): kotlin.Int
|
||||
public final val TEST: kotlin.Int = 1
|
||||
public final fun <get-TEST>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
kotlin.data() internal final class My {
|
||||
kotlin.data() public final class My {
|
||||
/*primary*/ public constructor My(/*0*/ x: kotlin.Int)
|
||||
internal final val x: kotlin.Int
|
||||
internal final fun <get-x>(): kotlin.Int
|
||||
internal final /*synthesized*/ fun component1(): kotlin.Int
|
||||
public final val x: kotlin.Int
|
||||
public final fun <get-x>(): kotlin.Int
|
||||
public final /*synthesized*/ fun component1(): kotlin.Int
|
||||
public final /*synthesized*/ fun copy(/*0*/ x: kotlin.Int = ...): test.My
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,17 +1,17 @@
|
||||
package test
|
||||
|
||||
kotlin.Deprecated(value = "Class") internal final class Class {
|
||||
kotlin.deprecated(value = "Class") public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
|
||||
kotlin.Deprecated(value = "companion object") public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
}
|
||||
|
||||
kotlin.Deprecated(value = "Inner") internal final inner class Inner {
|
||||
kotlin.deprecated(value = "Inner") public final inner class Inner {
|
||||
/*primary*/ public constructor Inner()
|
||||
}
|
||||
|
||||
kotlin.Deprecated(value = "Nested") internal final class Nested {
|
||||
kotlin.deprecated(value = "Nested") public final class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,17 +1,17 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class `$$$$$$` : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class `$$$$$$` : kotlin.Annotation {
|
||||
/*primary*/ public constructor `$$$$$$`()
|
||||
}
|
||||
|
||||
test.`$$$$$$`() internal final class A {
|
||||
test.`$$$$$$`() public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class `Anno$tation` : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class `Anno$tation` : kotlin.Annotation {
|
||||
/*primary*/ public constructor `Anno$tation`()
|
||||
}
|
||||
|
||||
test.`Anno$tation`() internal final class `Cla$s` {
|
||||
test.`Anno$tation`() public final class `Cla$s` {
|
||||
/*primary*/ public constructor `Cla$s`()
|
||||
}
|
||||
|
||||
+6
-6
@@ -1,23 +1,23 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno(/*0*/ t: java.lang.annotation.ElementType)
|
||||
internal final val t: java.lang.annotation.ElementType
|
||||
internal final fun <get-t>(): java.lang.annotation.ElementType
|
||||
public final val t: java.lang.annotation.ElementType
|
||||
public final fun <get-t>(): java.lang.annotation.ElementType
|
||||
}
|
||||
|
||||
test.Anno(t = ElementType.METHOD) internal final class Class {
|
||||
test.Anno(t = ElementType.METHOD) public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
|
||||
test.Anno(t = ElementType.ANNOTATION_TYPE) public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
}
|
||||
|
||||
test.Anno(t = ElementType.PARAMETER) internal final inner class Inner {
|
||||
test.Anno(t = ElementType.PARAMETER) public final inner class Inner {
|
||||
/*primary*/ public constructor Inner()
|
||||
}
|
||||
|
||||
test.Anno(t = ElementType.TYPE) internal final class Nested {
|
||||
test.Anno(t = ElementType.TYPE) public final class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,17 +1,17 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class A1 : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A1 : kotlin.Annotation {
|
||||
/*primary*/ public constructor A1()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class A2 : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A2 : kotlin.Annotation {
|
||||
/*primary*/ public constructor A2()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class A3 : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class A3 : kotlin.Annotation {
|
||||
/*primary*/ public constructor A3()
|
||||
}
|
||||
|
||||
test.A1() test.A2() test.A3() internal final class Class {
|
||||
test.A1() test.A2() test.A3() public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,14 +1,14 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
}
|
||||
|
||||
test.A.Anno() internal final class B {
|
||||
test.A.Anno() public final class B {
|
||||
/*primary*/ public constructor B()
|
||||
test.A.Anno() internal final fun f(): kotlin.Unit
|
||||
test.A.Anno() public final fun f(): kotlin.Unit
|
||||
}
|
||||
|
||||
+4
-4
@@ -1,17 +1,17 @@
|
||||
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()
|
||||
|
||||
test.Anno() internal final inner class Inner {
|
||||
test.Anno() public final inner class Inner {
|
||||
/*primary*/ public constructor Inner()
|
||||
}
|
||||
|
||||
test.Anno() internal final class Nested {
|
||||
test.Anno() public final class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.Retention(value = AnnotationRetention.RUNTIME) kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation(retention = AnnotationRetention.RUNTIME) public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
@@ -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()
|
||||
}
|
||||
|
||||
test.Anno() internal final class X {
|
||||
test.Anno() public final class X {
|
||||
/*primary*/ public constructor X()
|
||||
}
|
||||
|
||||
+25
-25
@@ -1,53 +1,53 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class BooleanAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class BooleanAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor BooleanAnno(/*0*/ value: kotlin.Boolean)
|
||||
internal final val value: kotlin.Boolean
|
||||
internal final fun <get-value>(): kotlin.Boolean
|
||||
public final val value: kotlin.Boolean
|
||||
public final fun <get-value>(): kotlin.Boolean
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ByteAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ByteAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor ByteAnno(/*0*/ value: kotlin.Byte)
|
||||
internal final val value: kotlin.Byte
|
||||
internal final fun <get-value>(): kotlin.Byte
|
||||
public final val value: kotlin.Byte
|
||||
public final fun <get-value>(): kotlin.Byte
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class CharAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class CharAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor CharAnno(/*0*/ value: kotlin.Char)
|
||||
internal final val value: kotlin.Char
|
||||
internal final fun <get-value>(): kotlin.Char
|
||||
public final val value: kotlin.Char
|
||||
public final fun <get-value>(): kotlin.Char
|
||||
}
|
||||
|
||||
test.IntAnno(value = 42) test.ShortAnno(value = 42.toShort()) test.ByteAnno(value = 42.toByte()) test.LongAnno(value = 42.toLong()) test.CharAnno(value = \u0041 ('A')) test.BooleanAnno(value = false) test.FloatAnno(value = 3.14.toFloat()) test.DoubleAnno(value = 3.14.toDouble()) internal final class Class {
|
||||
test.IntAnno(value = 42) test.ShortAnno(value = 42.toShort()) test.ByteAnno(value = 42.toByte()) test.LongAnno(value = 42.toLong()) test.CharAnno(value = \u0041 ('A')) test.BooleanAnno(value = false) test.FloatAnno(value = 3.14.toFloat()) test.DoubleAnno(value = 3.14.toDouble()) public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class DoubleAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class DoubleAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor DoubleAnno(/*0*/ value: kotlin.Double)
|
||||
internal final val value: kotlin.Double
|
||||
internal final fun <get-value>(): kotlin.Double
|
||||
public final val value: kotlin.Double
|
||||
public final fun <get-value>(): kotlin.Double
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class FloatAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class FloatAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor FloatAnno(/*0*/ value: kotlin.Float)
|
||||
internal final val value: kotlin.Float
|
||||
internal final fun <get-value>(): kotlin.Float
|
||||
public final val value: kotlin.Float
|
||||
public final fun <get-value>(): kotlin.Float
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class IntAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class IntAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor IntAnno(/*0*/ value: kotlin.Int)
|
||||
internal final val value: kotlin.Int
|
||||
internal final fun <get-value>(): kotlin.Int
|
||||
public final val value: kotlin.Int
|
||||
public final fun <get-value>(): kotlin.Int
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class LongAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class LongAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor LongAnno(/*0*/ value: kotlin.Long)
|
||||
internal final val value: kotlin.Long
|
||||
internal final fun <get-value>(): kotlin.Long
|
||||
public final val value: kotlin.Long
|
||||
public final fun <get-value>(): kotlin.Long
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() internal final class ShortAnno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class ShortAnno : kotlin.Annotation {
|
||||
/*primary*/ public constructor ShortAnno(/*0*/ value: kotlin.Short)
|
||||
internal final val value: kotlin.Short
|
||||
internal final fun <get-value>(): kotlin.Short
|
||||
public final val value: kotlin.Short
|
||||
public final fun <get-value>(): kotlin.Short
|
||||
}
|
||||
|
||||
+8
-8
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno(/*0*/ int: kotlin.Int, /*1*/ string: kotlin.String, /*2*/ double: kotlin.Double)
|
||||
internal final val double: kotlin.Double
|
||||
internal final fun <get-double>(): kotlin.Double
|
||||
internal final val int: kotlin.Int
|
||||
internal final fun <get-int>(): kotlin.Int
|
||||
internal final val string: kotlin.String
|
||||
internal final fun <get-string>(): kotlin.String
|
||||
public final val double: kotlin.Double
|
||||
public final fun <get-double>(): kotlin.Double
|
||||
public final val int: kotlin.Int
|
||||
public final fun <get-int>(): kotlin.Int
|
||||
public final val string: kotlin.String
|
||||
public final fun <get-string>(): kotlin.String
|
||||
}
|
||||
|
||||
test.Anno(double = 3.14.toDouble(), int = 42, string = "OK") internal final class Class {
|
||||
test.Anno(double = 3.14.toDouble(), int = 42, string = "OK") public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user