fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions
@@ -4,7 +4,7 @@ test.OptionGroups(o1 = test.StringOptions(option = {"abc", "d", "ef"}), o2 = tes
/*primary*/ public constructor AnnotationInAnnotationArguments()
}
internal final enum class E : kotlin.Enum<test.E> {
public final enum class E : kotlin.Enum<test.E> {
enum entry ENTRY
/*primary*/ private constructor E()
@@ -18,22 +18,22 @@ internal final enum class E : kotlin.Enum<test.E> {
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
}
kotlin.annotation.annotation() internal final class EnumOption : kotlin.Annotation {
kotlin.annotation.annotation() public final class EnumOption : kotlin.Annotation {
/*primary*/ public constructor EnumOption(/*0*/ option: test.E)
internal final val option: test.E
internal final fun <get-option>(): test.E
public final val option: test.E
public final fun <get-option>(): test.E
}
kotlin.annotation.annotation() internal final class OptionGroups : kotlin.Annotation {
kotlin.annotation.annotation() public final class OptionGroups : kotlin.Annotation {
/*primary*/ public constructor OptionGroups(/*0*/ o1: test.StringOptions, /*1*/ o2: test.EnumOption)
internal final val o1: test.StringOptions
internal final fun <get-o1>(): test.StringOptions
internal final val o2: test.EnumOption
internal final fun <get-o2>(): test.EnumOption
public final val o1: test.StringOptions
public final fun <get-o1>(): test.StringOptions
public final val o2: test.EnumOption
public final fun <get-o2>(): test.EnumOption
}
kotlin.annotation.annotation() internal final class StringOptions : kotlin.Annotation {
kotlin.annotation.annotation() public final class StringOptions : kotlin.Annotation {
/*primary*/ public constructor StringOptions(/*0*/ vararg option: kotlin.String /*kotlin.Array<out kotlin.String>*/)
internal final val option: kotlin.Array<out kotlin.String>
internal final fun <get-option>(): kotlin.Array<out kotlin.String>
public final val option: kotlin.Array<out kotlin.String>
public final fun <get-option>(): kotlin.Array<out kotlin.String>
}
@@ -1,6 +1,6 @@
package test
internal final enum class E : kotlin.Enum<test.E> {
public final enum class E : kotlin.Enum<test.E> {
enum entry CAKE
/*primary*/ private constructor E()
@@ -14,19 +14,19 @@ internal final enum class E : kotlin.Enum<test.E> {
public final /*synthesized*/ fun values(): kotlin.Array<test.E>
}
kotlin.annotation.annotation() internal final class EnumAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class EnumAnno : kotlin.Annotation {
/*primary*/ public constructor EnumAnno(/*0*/ value: test.E)
internal final val value: test.E
internal final fun <get-value>(): test.E
public final val value: test.E
public final fun <get-value>(): test.E
}
public final class EnumArgumentWithCustomToString {
/*primary*/ public constructor EnumArgumentWithCustomToString()
test.EnumAnno(value = E.CAKE) test.EnumArrayAnno(value = {E.CAKE, E.CAKE}) internal final fun annotated(): kotlin.Unit
test.EnumAnno(value = E.CAKE) test.EnumArrayAnno(value = {E.CAKE, E.CAKE}) public final fun annotated(): kotlin.Unit
}
kotlin.annotation.annotation() internal final class EnumArrayAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class EnumArrayAnno : kotlin.Annotation {
/*primary*/ public constructor EnumArrayAnno(/*0*/ vararg value: test.E /*kotlin.Array<out test.E>*/)
internal final val value: kotlin.Array<out test.E>
internal final fun <get-value>(): kotlin.Array<out test.E>
public final val value: kotlin.Array<out test.E>
public final fun <get-value>(): kotlin.Array<out test.E>
}
@@ -1,13 +1,13 @@
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*/ 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 interface T {
test.Anno(s = "bar") internal abstract val bar: kotlin.Array<kotlin.Array<kotlin.BooleanArray>>
internal abstract fun <get-bar>(): kotlin.Array<kotlin.Array<kotlin.BooleanArray>>
test.Anno(s = "foo") internal abstract fun foo(): kotlin.Array<kotlin.Array<kotlin.Array<test.T>>>
public interface T {
test.Anno(s = "bar") public abstract val bar: kotlin.Array<kotlin.Array<kotlin.BooleanArray>>
public abstract fun <get-bar>(): kotlin.Array<kotlin.Array<kotlin.BooleanArray>>
test.Anno(s = "foo") public abstract fun foo(): kotlin.Array<kotlin.Array<kotlin.Array<test.T>>>
}
@@ -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()
@field:test.Anno() internal final var property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
internal final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
@field:test.Anno() public final var property: kotlin.Int
public final fun <get-property>(): kotlin.Int
public final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
}
}
@@ -1,11 +1,11 @@
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*/ value: kotlin.String)
internal final val value: kotlin.String
internal final fun <get-value>(): kotlin.String
public final val value: kotlin.String
public final fun <get-value>(): kotlin.String
}
internal final class Constructor {
public final class Constructor {
/*primary*/ test.Anno(value = "string") public constructor Constructor()
}
@@ -1,11 +1,11 @@
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 val x: kotlin.Int
internal final fun <get-x>(): kotlin.Int
test.Anno() public final val x: kotlin.Int
public final fun <get-x>(): kotlin.Int
}
@@ -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*/ 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
}
internal final class Class {
public final class Class {
/*primary*/ public constructor Class()
@field:test.Anno(t = ElementType.FIELD) internal final var bar: kotlin.Int
internal final fun <get-bar>(): kotlin.Int
internal final fun <set-bar>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
test.Anno(t = ElementType.METHOD) internal final fun foo(): kotlin.Unit
@field:test.Anno(t = ElementType.FIELD) public final var bar: kotlin.Int
public final fun <get-bar>(): kotlin.Int
public final fun <set-bar>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
test.Anno(t = ElementType.METHOD) public final fun foo(): kotlin.Unit
}
@@ -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() internal final fun foo(): kotlin.Unit
test.Anno() public final fun foo(): kotlin.Unit
}
@@ -1,11 +1,11 @@
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 val property: kotlin.Int
test.Anno() internal final fun <get-property>(): kotlin.Int
public final val property: kotlin.Int
test.Anno() public final fun <get-property>(): kotlin.Int
}
@@ -1,12 +1,12 @@
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()
@field:test.Anno() internal final var property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
internal final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
@field:test.Anno() public final var property: kotlin.Int
public final fun <get-property>(): kotlin.Int
public final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
}
@@ -1,12 +1,12 @@
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 var property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
test.Anno() internal final fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
public final var property: kotlin.Int
public final fun <get-property>(): kotlin.Int
test.Anno() public final fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
}
@@ -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()
}
@@ -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()
}
}
@@ -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 {
@@ -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
}
}
}
@@ -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
}
@@ -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()
}
}
@@ -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`()
}
@@ -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()
}
}
@@ -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()
}
@@ -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
}
@@ -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,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()
}
@@ -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
}
@@ -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()
}
@@ -1,8 +1,8 @@
package test
test.Anno() internal val x: kotlin.Int
internal fun <get-x>(): kotlin.Int
test.Anno() public val x: kotlin.Int
public fun <get-x>(): kotlin.Int
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,11 +1,11 @@
package test
@field:test.Anno(t = ElementType.FIELD) internal val bar: kotlin.Int = 42
internal fun <get-bar>(): kotlin.Int
test.Anno(t = ElementType.METHOD) internal fun foo(): kotlin.Unit
@field:test.Anno(t = ElementType.FIELD) public val bar: kotlin.Int = 42
public fun <get-bar>(): kotlin.Int
test.Anno(t = ElementType.METHOD) public fun foo(): kotlin.Unit
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
}
@@ -1,12 +1,12 @@
package test
@field:test.Anno(t = {ElementType.PACKAGE}) internal val bar: kotlin.Int = 42
internal fun <get-bar>(): kotlin.Int
test.Anno(t = {}) internal fun baz(): kotlin.Unit
test.Anno(t = {ElementType.METHOD, ElementType.FIELD}) internal fun foo(): kotlin.Unit
@field:test.Anno(t = {ElementType.PACKAGE}) public val bar: kotlin.Int = 42
public fun <get-bar>(): kotlin.Int
test.Anno(t = {}) public fun baz(): kotlin.Unit
test.Anno(t = {ElementType.METHOD, ElementType.FIELD}) public fun foo(): kotlin.Unit
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno(/*0*/ vararg t: java.lang.annotation.ElementType /*kotlin.Array<out java.lang.annotation.ElementType>*/)
internal final val t: kotlin.Array<out java.lang.annotation.ElementType>
internal final fun <get-t>(): kotlin.Array<out java.lang.annotation.ElementType>
public final val t: kotlin.Array<out java.lang.annotation.ElementType>
public final fun <get-t>(): kotlin.Array<out java.lang.annotation.ElementType>
}
@@ -1,7 +1,7 @@
package test
test.Anno() internal fun function(): kotlin.Unit
test.Anno() public fun function(): kotlin.Unit
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,8 +1,8 @@
package test
internal val property: kotlin.Int
test.Anno() internal fun <get-property>(): kotlin.Int
public val property: kotlin.Int
test.Anno() public fun <get-property>(): kotlin.Int
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -1,9 +1,9 @@
package test
@field:test.Anno() internal var property: kotlin.Int
internal fun <get-property>(): kotlin.Int
internal fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
@field:test.Anno() public var property: kotlin.Int
public fun <get-property>(): kotlin.Int
public fun <set-property>(/*0*/ <set-?>: 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()
}
@@ -1,9 +1,9 @@
package test
internal var property: kotlin.Int
internal fun <get-property>(): kotlin.Int
test.Anno() internal fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
public var property: kotlin.Int
public fun <get-property>(): kotlin.Int
test.Anno() public fun <set-property>(/*0*/ value: 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()
}
@@ -1,12 +1,12 @@
package test
@field:test.Anno(t = {"prosper"}) internal val bar: kotlin.Int = 42
internal fun <get-bar>(): kotlin.Int
test.Anno(t = {}) internal fun baz(): kotlin.Unit
test.Anno(t = {"live", "long"}) internal fun foo(): kotlin.Unit
@field:test.Anno(t = {"prosper"}) public val bar: kotlin.Int = 42
public fun <get-bar>(): kotlin.Int
test.Anno(t = {}) public fun baz(): kotlin.Unit
test.Anno(t = {"live", "long"}) public fun foo(): kotlin.Unit
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno(/*0*/ vararg t: kotlin.String /*kotlin.Array<out kotlin.String>*/)
internal final val t: kotlin.Array<out kotlin.String>
internal final fun <get-t>(): kotlin.Array<out kotlin.String>
public final val t: kotlin.Array<out kotlin.String>
public final fun <get-t>(): kotlin.Array<out kotlin.String>
}
@@ -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
}
@@ -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
@@ -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()
}
@@ -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
}
@@ -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
}
@@ -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
}
@@ -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
}
@@ -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
}
}
@@ -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()
}
@@ -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
}
@@ -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()
}
@@ -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()
}
@@ -1,11 +1,11 @@
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 val property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
test.Anno() public final val property: kotlin.Int
public final fun <get-property>(): kotlin.Int
}
@@ -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()
}
internal final class Class {
public final class Class {
/*primary*/ public constructor Class()
public companion object Companion {
/*primary*/ private constructor Companion()
test.Anno() internal final val property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
test.Anno() public final val property: kotlin.Int
public final fun <get-property>(): kotlin.Int
}
}
@@ -1,23 +1,23 @@
package test
internal final class Class {
public final class Class {
/*primary*/ public constructor Class()
test.DoubleAnno() internal final val kotlin.Double.extension: kotlin.Int
internal final fun kotlin.Double.<get-extension>(): kotlin.Int
test.IntAnno() internal final val kotlin.Int.extension: kotlin.Int
internal final fun kotlin.Int.<get-extension>(): kotlin.Int
test.StringAnno() internal final val kotlin.String.extension: kotlin.String
internal final fun kotlin.String.<get-extension>(): kotlin.String
test.DoubleAnno() public final val kotlin.Double.extension: kotlin.Int
public final fun kotlin.Double.<get-extension>(): kotlin.Int
test.IntAnno() public final val kotlin.Int.extension: kotlin.Int
public final fun kotlin.Int.<get-extension>(): kotlin.Int
test.StringAnno() public final val kotlin.String.extension: kotlin.String
public final fun kotlin.String.<get-extension>(): kotlin.String
}
kotlin.annotation.annotation() internal final class DoubleAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class DoubleAnno : kotlin.Annotation {
/*primary*/ public constructor DoubleAnno()
}
kotlin.annotation.annotation() internal final class IntAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class IntAnno : kotlin.Annotation {
/*primary*/ public constructor IntAnno()
}
kotlin.annotation.annotation() internal final class StringAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class StringAnno : kotlin.Annotation {
/*primary*/ public constructor StringAnno()
}
@@ -1,20 +1,20 @@
package test
test.DoubleAnno() internal val kotlin.Double.extension: kotlin.Int
internal fun kotlin.Double.<get-extension>(): kotlin.Int
test.IntAnno() internal val kotlin.Int.extension: kotlin.Int
internal fun kotlin.Int.<get-extension>(): kotlin.Int
test.StringAnno() internal val kotlin.String.extension: kotlin.String
internal fun kotlin.String.<get-extension>(): kotlin.String
test.DoubleAnno() public val kotlin.Double.extension: kotlin.Int
public fun kotlin.Double.<get-extension>(): kotlin.Int
test.IntAnno() public val kotlin.Int.extension: kotlin.Int
public fun kotlin.Int.<get-extension>(): kotlin.Int
test.StringAnno() public val kotlin.String.extension: kotlin.String
public fun kotlin.String.<get-extension>(): kotlin.String
kotlin.annotation.annotation() internal final class DoubleAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class DoubleAnno : kotlin.Annotation {
/*primary*/ public constructor DoubleAnno()
}
kotlin.annotation.annotation() internal final class IntAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class IntAnno : kotlin.Annotation {
/*primary*/ public constructor IntAnno()
}
kotlin.annotation.annotation() internal final class StringAnno : kotlin.Annotation {
kotlin.annotation.annotation() public final class StringAnno : kotlin.Annotation {
/*primary*/ public constructor StringAnno()
}
@@ -1,14 +1,14 @@
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 interface Trait {
test.Anno() internal abstract val property: kotlin.Int
internal abstract fun <get-property>(): kotlin.Int
public interface Trait {
test.Anno() public abstract val property: kotlin.Int
public abstract fun <get-property>(): kotlin.Int
}
}
@@ -1,8 +1,8 @@
package test
test.Anno() internal val property: kotlin.Int
internal fun <get-property>(): kotlin.Int
test.Anno() public val property: kotlin.Int
public fun <get-property>(): kotlin.Int
kotlin.annotation.annotation() internal final class Anno : kotlin.Annotation {
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
/*primary*/ public constructor Anno()
}
@@ -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 interface Trait {
test.Anno() internal abstract val property: kotlin.Int
internal abstract fun <get-property>(): kotlin.Int
public interface Trait {
test.Anno() public abstract val property: kotlin.Int
public abstract fun <get-property>(): kotlin.Int
}
@@ -1,14 +1,14 @@
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 {
public interface Trait {
public companion object Companion {
/*primary*/ private constructor Companion()
test.Anno() internal final val property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
test.Anno() public final val property: kotlin.Int
public final fun <get-property>(): kotlin.Int
}
}
@@ -1,7 +1,7 @@
package test
internal fun @[test.A()] kotlin.String.foo(): kotlin.Unit
public fun @[test.A()] kotlin.String.foo(): kotlin.Unit
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) kotlin.annotation.annotation() public final class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
@@ -1,10 +1,10 @@
package test
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) kotlin.annotation.annotation() internal final class A : kotlin.Annotation {
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) kotlin.annotation.annotation() public final class A : kotlin.Annotation {
/*primary*/ public constructor A()
}
internal final class SimpleTypeAnnotation {
public final class SimpleTypeAnnotation {
/*primary*/ public constructor SimpleTypeAnnotation()
internal final fun foo(/*0*/ x: @[test.A()] kotlin.IntRange): @[test.A()] kotlin.Int
public final fun foo(/*0*/ x: @[test.A()] kotlin.IntRange): @[test.A()] kotlin.Int
}
@@ -1,11 +1,11 @@
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 interface Foo</*0*/ T : @[test.A()] kotlin.Number> : @[test.A()] kotlin.CharSequence {
internal abstract fun </*0*/ E, /*1*/ F : @[test.A()] E> bar(): kotlin.Unit
public interface Foo</*0*/ T : @[test.A()] kotlin.Number> : @[test.A()] kotlin.CharSequence {
public abstract fun </*0*/ E, /*1*/ F : @[test.A()] E> bar(): kotlin.Unit
public abstract override /*1*/ /*fake_override*/ fun charAt(/*0*/ index: kotlin.Int): kotlin.Char
public abstract override /*1*/ /*fake_override*/ fun length(): kotlin.Int
public abstract override /*1*/ /*fake_override*/ fun subSequence(/*0*/ start: kotlin.Int, /*1*/ end: kotlin.Int): kotlin.CharSequence
@@ -1,14 +1,14 @@
package test
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) kotlin.annotation.annotation() internal final class Ann : kotlin.Annotation {
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) kotlin.annotation.annotation() public final class Ann : kotlin.Annotation {
/*primary*/ public constructor Ann(/*0*/ x: kotlin.String, /*1*/ y: kotlin.Double)
internal final val x: kotlin.String
internal final fun <get-x>(): kotlin.String
internal final val y: kotlin.Double
internal final fun <get-y>(): kotlin.Double
public final val x: kotlin.String
public final fun <get-x>(): kotlin.String
public final val y: kotlin.Double
public final fun <get-y>(): kotlin.Double
}
internal final class TypeAnnotationWithArguments {
public final class TypeAnnotationWithArguments {
/*primary*/ public constructor TypeAnnotationWithArguments()
internal final fun foo(/*0*/ param: @[test.Ann(x = "param", y = 3.14.toDouble())] kotlin.IntRange): @[test.Ann(x = "fun", y = 2.72.toDouble())] kotlin.Unit
public final fun foo(/*0*/ param: @[test.Ann(x = "param", y = 3.14.toDouble())] kotlin.IntRange): @[test.Ann(x = "fun", y = 2.72.toDouble())] kotlin.Unit
}
@@ -1,13 +1,12 @@
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()
@field:test.Anno() internal final var property: kotlin.Int
internal final fun <get-property>(): kotlin.Int
internal final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
@field:test.Anno() public final var property: kotlin.Int
public final fun <get-property>(): kotlin.Int
public final fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
}
@@ -1,15 +1,15 @@
package test
internal final class A {
public final class A {
/*primary*/ public constructor A()
internal final val @receiver:test.Ann() kotlin.String.myLength2: kotlin.Int
internal final fun @receiver:test.Ann() kotlin.String.<get-myLength2>(): kotlin.Int
internal final var @receiver:test.Ann() kotlin.String.myLength3: kotlin.Int
internal final fun @receiver:test.Ann() kotlin.String.<get-myLength3>(): kotlin.Int
internal final fun @receiver:test.Ann() kotlin.String.<set-myLength3>(/*0*/ v: kotlin.Int): kotlin.Unit
internal final fun @receiver:test.Ann() kotlin.String.myLength(/*0*/ test.Ann() q: kotlin.String): kotlin.Int
public final val @receiver:test.Ann() kotlin.String.myLength2: kotlin.Int
public final fun @receiver:test.Ann() kotlin.String.<get-myLength2>(): kotlin.Int
public final var @receiver:test.Ann() kotlin.String.myLength3: kotlin.Int
public final fun @receiver:test.Ann() kotlin.String.<get-myLength3>(): kotlin.Int
public final fun @receiver:test.Ann() kotlin.String.<set-myLength3>(/*0*/ v: kotlin.Int): kotlin.Unit
public final fun @receiver:test.Ann() kotlin.String.myLength(/*0*/ test.Ann() q: kotlin.String): kotlin.Int
}
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.VALUE_PARAMETER}) kotlin.annotation.annotation() internal final class Ann : kotlin.Annotation {
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.VALUE_PARAMETER}) kotlin.annotation.annotation() public final class Ann : kotlin.Annotation {
/*primary*/ public constructor Ann()
}
+1 -1
View File
@@ -1,5 +1,5 @@
package test
internal final class Ramification {
public final class Ramification {
/*primary*/ public constructor Ramification()
}
@@ -1,5 +1,5 @@
package test
internal final class Wine</*0*/ in T> {
public final class Wine</*0*/ in T> {
/*primary*/ public constructor Wine</*0*/ in T>()
}
@@ -1,9 +1,9 @@
package test
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()
}
}
@@ -1,66 +1,66 @@
package test
internal final class ConstructorTypeParamClassObjectConflict</*0*/ test> {
public final class ConstructorTypeParamClassObjectConflict</*0*/ test> {
/*primary*/ public constructor ConstructorTypeParamClassObjectConflict</*0*/ test>()
internal final val some: kotlin.Int = 12
internal final fun <get-some>(): kotlin.Int
public final val some: kotlin.Int = 12
public final fun <get-some>(): kotlin.Int
public companion object Companion {
/*primary*/ private constructor Companion()
internal final val test: kotlin.Int = 12
internal final fun <get-test>(): kotlin.Int
public final val test: kotlin.Int = 12
public final fun <get-test>(): kotlin.Int
}
}
internal final class ConstructorTypeParamClassObjectTypeConflict</*0*/ test> {
public final class ConstructorTypeParamClassObjectTypeConflict</*0*/ test> {
/*primary*/ public constructor ConstructorTypeParamClassObjectTypeConflict</*0*/ test>()
internal final val some: test?
internal final fun <get-some>(): test?
public final val some: test?
public final fun <get-some>(): test?
public companion object Companion {
/*primary*/ private constructor Companion()
internal interface test {
public interface test {
}
}
}
internal final class TestClassObjectAndClassConflict {
public final class TestClassObjectAndClassConflict {
/*primary*/ public constructor TestClassObjectAndClassConflict()
internal final val bla: kotlin.String = "More"
internal final fun <get-bla>(): kotlin.String
internal final val some: kotlin.String = "More"
internal final fun <get-some>(): kotlin.String
public final val bla: kotlin.String = "More"
public final fun <get-bla>(): kotlin.String
public final val some: kotlin.String = "More"
public final fun <get-some>(): kotlin.String
public companion object Companion {
/*primary*/ private constructor Companion()
internal final val bla: kotlin.Int = 12
internal final fun <get-bla>(): kotlin.Int
public final val bla: kotlin.Int = 12
public final fun <get-bla>(): kotlin.Int
}
}
internal final class TestConstructorParamClassObjectConflict {
public final class TestConstructorParamClassObjectConflict {
/*primary*/ public constructor TestConstructorParamClassObjectConflict(/*0*/ test: kotlin.String)
internal final val some: kotlin.String
internal final fun <get-some>(): kotlin.String
public final val some: kotlin.String
public final fun <get-some>(): kotlin.String
public companion object Companion {
/*primary*/ private constructor Companion()
internal final val test: kotlin.Int = 12
internal final fun <get-test>(): kotlin.Int
public final val test: kotlin.Int = 12
public final fun <get-test>(): kotlin.Int
}
}
internal final class TestConstructorValClassObjectConflict {
public final class TestConstructorValClassObjectConflict {
/*primary*/ public constructor TestConstructorValClassObjectConflict(/*0*/ test: kotlin.String)
internal final val some: kotlin.String
internal final fun <get-some>(): kotlin.String
internal final val test: kotlin.String
internal final fun <get-test>(): kotlin.String
public final val some: kotlin.String
public final fun <get-some>(): kotlin.String
public final val test: kotlin.String
public final fun <get-test>(): kotlin.String
public companion object Companion {
/*primary*/ private constructor Companion()
internal final val test: kotlin.Int = 12
internal final fun <get-test>(): kotlin.Int
public final val test: kotlin.Int = 12
public final fun <get-test>(): kotlin.Int
}
}
@@ -1,5 +1,5 @@
package test
internal final class Juice</*0*/ out T> {
public final class Juice</*0*/ out T> {
/*primary*/ public constructor Juice</*0*/ out T>()
}
@@ -1,5 +1,5 @@
package test
internal final class Beer</*0*/ T> {
public final class Beer</*0*/ T> {
/*primary*/ public constructor Beer</*0*/ T>()
}
@@ -1,5 +1,5 @@
package test
internal final class ClassParamReferencesParam</*0*/ A, /*1*/ B : A> {
public final class ClassParamReferencesParam</*0*/ A, /*1*/ B : A> {
/*primary*/ public constructor ClassParamReferencesParam</*0*/ A, /*1*/ B : A>()
}
@@ -1,5 +1,5 @@
package test
internal final class ClassParamReferencesParam</*0*/ A, /*1*/ in B : A> {
public final class ClassParamReferencesParam</*0*/ A, /*1*/ in B : A> {
/*primary*/ public constructor ClassParamReferencesParam</*0*/ A, /*1*/ in B : A>()
}
@@ -1,8 +1,8 @@
package test
internal final class ClassParamReferencesSelf</*0*/ A : test.TraitWithP<A>> {
public final class ClassParamReferencesSelf</*0*/ A : test.TraitWithP<A>> {
/*primary*/ public constructor ClassParamReferencesSelf</*0*/ A : test.TraitWithP<A>>()
}
internal interface TraitWithP</*0*/ P> {
public interface TraitWithP</*0*/ P> {
}
@@ -1,5 +1,5 @@
package test
internal final class Clock</*0*/ A : java.lang.Number> {
public final class Clock</*0*/ A : java.lang.Number> {
/*primary*/ public constructor Clock</*0*/ A : java.lang.Number>()
}
@@ -1,5 +1,5 @@
package test
internal final class Clock</*0*/ A : java.lang.Number> where A : java.io.Serializable {
public final class Clock</*0*/ A : java.lang.Number> where A : java.io.Serializable {
/*primary*/ public constructor Clock</*0*/ A : java.lang.Number>() where A : java.io.Serializable
}
@@ -1,5 +1,5 @@
package test
internal final class Clock</*0*/ A : java.io.Serializable> {
public final class Clock</*0*/ A : java.io.Serializable> {
/*primary*/ public constructor Clock</*0*/ A : java.io.Serializable>()
}
@@ -1,5 +1,5 @@
package test
internal final class ClassTwoParams</*0*/ P, /*1*/ Q> {
public final class ClassTwoParams</*0*/ P, /*1*/ Q> {
/*primary*/ public constructor ClassTwoParams</*0*/ P, /*1*/ Q>()
}
@@ -1,5 +1,5 @@
package test
internal final class ClassTwoParams</*0*/ out P, /*1*/ Q> {
public final class ClassTwoParams</*0*/ out P, /*1*/ Q> {
/*primary*/ public constructor ClassTwoParams</*0*/ out P, /*1*/ Q>()
}
@@ -1,6 +1,6 @@
package test
internal final enum class EnumWithGenericConstructorParameter : kotlin.Enum<test.EnumWithGenericConstructorParameter> {
public final enum class EnumWithGenericConstructorParameter : kotlin.Enum<test.EnumWithGenericConstructorParameter> {
/*primary*/ private constructor EnumWithGenericConstructorParameter(/*0*/ list: kotlin.List<kotlin.String>?)
protected final override /*1*/ /*fake_override*/ fun clone(): kotlin.Any
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.EnumWithGenericConstructorParameter): kotlin.Int
@@ -1,6 +1,6 @@
package test
internal final enum class EnumWithPrimitiveConstructorParameter : kotlin.Enum<test.EnumWithPrimitiveConstructorParameter> {
public final enum class EnumWithPrimitiveConstructorParameter : kotlin.Enum<test.EnumWithPrimitiveConstructorParameter> {
/*primary*/ private constructor EnumWithPrimitiveConstructorParameter(/*0*/ b: kotlin.Boolean)
protected final override /*1*/ /*fake_override*/ fun clone(): kotlin.Any
public final override /*1*/ /*fake_override*/ fun compareTo(/*0*/ other: test.EnumWithPrimitiveConstructorParameter): kotlin.Int
@@ -1,9 +1,9 @@
package test
internal abstract class Aaa {
public abstract class Aaa {
/*primary*/ public constructor Aaa()
}
internal final class Bbb : test.Aaa {
public final class Bbb : test.Aaa {
/*primary*/ public constructor Bbb()
}
@@ -1,9 +1,9 @@
package test
internal abstract class Aaa</*0*/ P> {
public abstract class Aaa</*0*/ P> {
/*primary*/ public constructor Aaa</*0*/ P>()
}
internal final class Bbb : test.Aaa<java.util.Random> {
public final class Bbb : test.Aaa<java.util.Random> {
/*primary*/ public constructor Bbb()
}
@@ -1,12 +1,12 @@
package test
public interface A</*0*/ T> {
internal abstract fun bar(): T
internal open fun foo(): T
public abstract fun bar(): T
public open fun foo(): T
}
public final class B : test.A<kotlin.String> {
/*primary*/ public constructor B()
internal open override /*1*/ fun bar(): kotlin.String
internal open override /*1*/ /*fake_override*/ fun foo(): kotlin.String
public open override /*1*/ fun bar(): kotlin.String
public open override /*1*/ /*fake_override*/ fun foo(): kotlin.String
}
@@ -1,10 +1,10 @@
package test
internal open class Class : test.Trait {
public open class Class : test.Trait {
/*primary*/ public constructor Class()
internal open override /*1*/ /*fake_override*/ fun f(/*0*/ a: kotlin.String): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun f(/*0*/ a: kotlin.String): kotlin.Unit
}
internal interface Trait {
internal open fun f(/*0*/ a: kotlin.String): kotlin.Unit
public interface Trait {
public open fun f(/*0*/ a: kotlin.String): kotlin.Unit
}
@@ -1,8 +1,8 @@
package test
internal interface Aaa</*0*/ P> {
public interface Aaa</*0*/ P> {
}
internal final class Bbb : test.Aaa<java.util.Random> {
public final class Bbb : test.Aaa<java.util.Random> {
/*primary*/ public constructor Bbb()
}
@@ -1,13 +1,13 @@
package test
internal final class Outer {
public final class Outer {
/*primary*/ public constructor Outer()
internal open inner class Inner1 {
public open inner class Inner1 {
/*primary*/ public constructor Inner1()
}
internal final inner class Inner2 : test.Outer.Inner1 {
public final inner class Inner2 : test.Outer.Inner1 {
/*primary*/ public constructor Inner2()
}
}
@@ -1,9 +1,9 @@
package test
internal final class Outer {
public final class Outer {
/*primary*/ public constructor Outer()
internal final inner class Inner</*0*/ T> {
public final inner class Inner</*0*/ T> {
/*primary*/ public constructor Inner</*0*/ T>()
}
}
@@ -1,7 +1,7 @@
package test
internal val x: kotlin.Int = 5
internal fun <get-x>(): kotlin.Int
public val x: kotlin.Int = 5
public fun <get-x>(): kotlin.Int
public object Obj {
/*primary*/ private constructor Obj()
@@ -1,9 +1,9 @@
package test
internal final class Outer {
public final class Outer {
/*primary*/ public constructor Outer()
internal final class Nested {
public final class Nested {
/*primary*/ public constructor Nested()
}
}
@@ -1,13 +1,13 @@
package test
internal final class Outer {
public final class Outer {
/*primary*/ public constructor Outer()
internal open class Nested1 {
public open class Nested1 {
/*primary*/ public constructor Nested1()
}
internal final class Nested2 : test.Outer.Nested1 {
public final class Nested2 : test.Outer.Nested1 {
/*primary*/ public constructor Nested2()
}
}
@@ -1,9 +1,9 @@
package test
internal final class Outer {
public final class Outer {
/*primary*/ public constructor Outer()
internal final class Nested</*0*/ T> {
public final class Nested</*0*/ T> {
/*primary*/ public constructor Nested</*0*/ T>()
}
}
@@ -1,9 +1,9 @@
package test
internal interface Rec</*0*/ R, /*1*/ out T : test.Rec<R, T>> {
internal abstract fun t(): T
public interface Rec</*0*/ R, /*1*/ out T : test.Rec<R, T>> {
public abstract fun t(): T
}
internal interface Super {
internal open fun foo(/*0*/ p: test.Rec<*, *>): test.Rec<*, *>
public interface Super {
public open fun foo(/*0*/ p: test.Rec<*, *>): test.Rec<*, *>
}
@@ -1,5 +1,5 @@
package test
public interface SingleAbstractMethod {
internal abstract fun foo(): kotlin.Unit
public abstract fun foo(): kotlin.Unit
}
+1 -1
View File
@@ -1,4 +1,4 @@
package test
internal interface Trtrtr {
public interface Trtrtr {
}
@@ -1,6 +1,6 @@
package test
internal final class ClassParamUsedInFun</*0*/ in T> {
public final class ClassParamUsedInFun</*0*/ in T> {
/*primary*/ public constructor ClassParamUsedInFun</*0*/ in T>()
internal final fun f(/*0*/ t: T): kotlin.Int
public final fun f(/*0*/ t: T): kotlin.Int
}
@@ -1,6 +1,6 @@
package test
internal final class ClassParamUsedInFun</*0*/ T> {
public final class ClassParamUsedInFun</*0*/ T> {
/*primary*/ public constructor ClassParamUsedInFun</*0*/ T>()
internal final fun f(/*0*/ t: T): kotlin.Int
public final fun f(/*0*/ t: T): kotlin.Int
}
@@ -1,10 +1,10 @@
package test
internal interface A {
internal open fun f(): kotlin.String
public interface A {
public open fun f(): kotlin.String
}
internal final class B : test.A {
public final class B : test.A {
/*primary*/ public constructor B()
internal open override /*1*/ /*fake_override*/ fun f(): kotlin.String
public open override /*1*/ /*fake_override*/ fun f(): kotlin.String
}
@@ -1,11 +1,11 @@
package test
internal open class Base</*0*/ T> {
public open class Base</*0*/ T> {
/*primary*/ public constructor Base</*0*/ T>()
internal final fun foo(): T
public final fun foo(): T
}
internal final class Inh : test.Base<kotlin.String> {
public final class Inh : test.Base<kotlin.String> {
/*primary*/ public constructor Inh()
internal final override /*1*/ /*fake_override*/ fun foo(): kotlin.String
public final override /*1*/ /*fake_override*/ fun foo(): kotlin.String
}
@@ -1,5 +1,5 @@
package test
internal interface A {
internal final fun f(): kotlin.String
public interface A {
public final fun f(): kotlin.String
}
@@ -1,5 +1,5 @@
package test
internal interface A {
internal open fun f(): kotlin.String
public interface A {
public open fun f(): kotlin.String
}
@@ -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
}
}
@@ -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
}
}
@@ -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 {
@@ -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 {

Some files were not shown because too many files have changed in this diff Show More