Regenerate test data containing rendered descriptors

Introduced '@' after each annotation
This commit is contained in:
Denis Zharkov
2015-09-15 19:41:57 +03:00
parent 7ea7e3cc7c
commit 4850fd10f0
718 changed files with 2061 additions and 2061 deletions
@@ -1,23 +1,23 @@
package test
kotlin.annotation.annotation() public final class AnnotationArray : kotlin.Annotation {
@kotlin.annotation.annotation() public final class AnnotationArray : kotlin.Annotation {
public constructor AnnotationArray(/*0*/ annotationArray: kotlin.Array<test.JustAnnotation>)
public final val annotationArray: kotlin.Array<test.JustAnnotation>
}
test.JustAnnotation(annotation = test.Empty()) test.AnnotationArray(annotationArray = {}) public final class C1 {
@test.JustAnnotation(annotation = test.Empty()) @test.AnnotationArray(annotationArray = {}) public final class C1 {
public constructor C1()
}
test.AnnotationArray(annotationArray = {test.JustAnnotation(annotation = test.Empty()), test.JustAnnotation(annotation = test.Empty())}) public final class C2 {
@test.AnnotationArray(annotationArray = {test.JustAnnotation(annotation = test.Empty()), test.JustAnnotation(annotation = test.Empty())}) public final class C2 {
public constructor C2()
}
kotlin.annotation.annotation() public final class Empty : kotlin.Annotation {
@kotlin.annotation.annotation() public final class Empty : kotlin.Annotation {
public constructor Empty()
}
kotlin.annotation.annotation() public final class JustAnnotation : kotlin.Annotation {
@kotlin.annotation.annotation() public final class JustAnnotation : kotlin.Annotation {
public constructor JustAnnotation(/*0*/ annotation: test.Empty)
public final val annotation: test.Empty
}
@@ -1,19 +1,19 @@
package test
test.JustEnum(weapon = Weapon.SCISSORS) test.EnumArray(enumArray = {}) public final class C1 {
@test.JustEnum(weapon = Weapon.SCISSORS) @test.EnumArray(enumArray = {}) public final class C1 {
public constructor C1()
}
test.EnumArray(enumArray = {Weapon.PAPER, Weapon.ROCK}) public final class C2 {
@test.EnumArray(enumArray = {Weapon.PAPER, Weapon.ROCK}) public final class C2 {
public constructor C2()
}
kotlin.annotation.annotation() public final class EnumArray : kotlin.Annotation {
@kotlin.annotation.annotation() public final class EnumArray : kotlin.Annotation {
public constructor EnumArray(/*0*/ enumArray: kotlin.Array<test.Weapon>)
public final val enumArray: kotlin.Array<test.Weapon>
}
kotlin.annotation.annotation() public final class JustEnum : kotlin.Annotation {
@kotlin.annotation.annotation() public final class JustEnum : kotlin.Annotation {
public constructor JustEnum(/*0*/ weapon: test.Weapon)
public final val weapon: test.Weapon
}
@@ -1,14 +1,14 @@
package test
test.PrimitiveArrays(booleanArray = {true, false, true}, byteArray = {-7.toByte(), 7.toByte()}, charArray = {\u0025 ('%'), \u007A ('z')}, doubleArray = {-3.14.toDouble()}, floatArray = {2.72.toFloat(), 0.0.toFloat()}, intArray = {239017, -1}, longArray = {123456789123456789.toLong()}, shortArray = {239.toShort()}) public final class C1 {
@test.PrimitiveArrays(booleanArray = {true, false, true}, byteArray = {-7.toByte(), 7.toByte()}, charArray = {\u0025 ('%'), \u007A ('z')}, doubleArray = {-3.14.toDouble()}, floatArray = {2.72.toFloat(), 0.0.toFloat()}, intArray = {239017, -1}, longArray = {123456789123456789.toLong()}, shortArray = {239.toShort()}) public final class C1 {
public constructor C1()
}
test.PrimitiveArrays(booleanArray = {}, byteArray = {}, charArray = {}, doubleArray = {}, floatArray = {}, intArray = {}, longArray = {}, shortArray = {}) public final class C2 {
@test.PrimitiveArrays(booleanArray = {}, byteArray = {}, charArray = {}, doubleArray = {}, floatArray = {}, intArray = {}, longArray = {}, shortArray = {}) public final class C2 {
public constructor C2()
}
kotlin.annotation.annotation() public final class PrimitiveArrays : kotlin.Annotation {
@kotlin.annotation.annotation() public final class PrimitiveArrays : kotlin.Annotation {
public constructor PrimitiveArrays(/*0*/ byteArray: kotlin.ByteArray, /*1*/ charArray: kotlin.CharArray, /*2*/ shortArray: kotlin.ShortArray, /*3*/ intArray: kotlin.IntArray, /*4*/ longArray: kotlin.LongArray, /*5*/ floatArray: kotlin.FloatArray, /*6*/ doubleArray: kotlin.DoubleArray, /*7*/ booleanArray: kotlin.BooleanArray)
public final val booleanArray: kotlin.BooleanArray
public final val byteArray: kotlin.ByteArray
@@ -1,14 +1,14 @@
package test
test.Primitives(boolean = true, byte = 7.toByte(), char = \u0025 ('%'), double = -3.14.toDouble(), float = 2.72.toFloat(), int = 239017, long = 123456789123456789.toLong(), short = 239.toShort()) public final class C {
@test.Primitives(boolean = true, byte = 7.toByte(), char = \u0025 ('%'), double = -3.14.toDouble(), float = 2.72.toFloat(), int = 239017, long = 123456789123456789.toLong(), short = 239.toShort()) public final class C {
public constructor C()
}
test.Primitives(boolean = true, byte = 7.toByte(), char = \u0025 ('%'), double = -3.14.toDouble(), float = 2.72.toFloat(), int = 239017, long = 123456789123456789.toLong(), short = 239.toShort()) public final class D {
@test.Primitives(boolean = true, byte = 7.toByte(), char = \u0025 ('%'), double = -3.14.toDouble(), float = 2.72.toFloat(), int = 239017, long = 123456789123456789.toLong(), short = 239.toShort()) public final class D {
public constructor D()
}
kotlin.annotation.annotation() public final class Primitives : kotlin.Annotation {
@kotlin.annotation.annotation() public final class Primitives : kotlin.Annotation {
public constructor Primitives(/*0*/ byte: kotlin.Byte, /*1*/ char: kotlin.Char, /*2*/ short: kotlin.Short, /*3*/ int: kotlin.Int, /*4*/ long: kotlin.Long, /*5*/ float: kotlin.Float, /*6*/ double: kotlin.Double, /*7*/ boolean: kotlin.Boolean)
public final val boolean: kotlin.Boolean
public final val byte: kotlin.Byte
@@ -1,19 +1,19 @@
package test
test.JustString(string = "kotlin") test.StringArray(stringArray = {}) public final class C1 {
@test.JustString(string = "kotlin") @test.StringArray(stringArray = {}) public final class C1 {
public constructor C1()
}
test.StringArray(stringArray = {"java", ""}) public final class C2 {
@test.StringArray(stringArray = {"java", ""}) public final class C2 {
public constructor C2()
}
kotlin.annotation.annotation() public final class JustString : kotlin.Annotation {
@kotlin.annotation.annotation() public final class JustString : kotlin.Annotation {
public constructor JustString(/*0*/ string: kotlin.String)
public final val string: kotlin.String
}
kotlin.annotation.annotation() public final class StringArray : kotlin.Annotation {
@kotlin.annotation.annotation() public final class StringArray : kotlin.Annotation {
public constructor StringArray(/*0*/ stringArray: kotlin.Array<kotlin.String>)
public final val stringArray: kotlin.Array<kotlin.String>
}
@@ -18,11 +18,11 @@ public final enum class My : kotlin.Enum<test.My> {
public final /*synthesized*/ fun values(): kotlin.Array<test.My>
}
kotlin.annotation.annotation() public final class ann : kotlin.Annotation {
@kotlin.annotation.annotation() public final class ann : kotlin.Annotation {
public constructor ann(/*0*/ vararg m: test.My /*kotlin.Array<out test.My>*/)
public final val m: kotlin.Array<out test.My>
}
test.ann(m = {My.ALPHA, My.BETA}) kotlin.annotation.annotation() public final class annotated : kotlin.Annotation {
@test.ann(m = {My.ALPHA, My.BETA}) @kotlin.annotation.annotation() public final class annotated : kotlin.Annotation {
public constructor annotated()
}
@@ -1,27 +1,27 @@
package test
test.anno(x = "top level property") public val p1: kotlin.Nothing?
test.anno(x = "extension property") public val kotlin.Double.p2: kotlin.Double
test.anno(x = "top level function") public fun f1(/*0*/ test.anno(x = "top level function parameter") p: kotlin.Int): kotlin.Unit
test.anno(x = "extension function") public fun kotlin.Long.f2(/*0*/ test.anno(x = "extension function parameter") p: kotlin.Int): kotlin.Unit
@test.anno(x = "top level property") public val p1: kotlin.Nothing?
@test.anno(x = "extension property") public val kotlin.Double.p2: kotlin.Double
@test.anno(x = "top level function") public fun f1(/*0*/ @test.anno(x = "top level function parameter") p: kotlin.Int): kotlin.Unit
@test.anno(x = "extension function") public fun kotlin.Long.f2(/*0*/ @test.anno(x = "extension function parameter") p: kotlin.Int): kotlin.Unit
test.anno(x = "top level class") public final class C1 {
test.anno(x = "constructor") public constructor C1()
test.anno(x = "member property") public final val p3: kotlin.Nothing?
test.anno(x = "member extension property") public final val kotlin.Int.v4: kotlin.Int
test.anno(x = "member function") public final fun f3(/*0*/ test.anno(x = "member function parameter") p: kotlin.Int): kotlin.Unit
test.anno(x = "member extension function") public final fun kotlin.String.f4(): kotlin.Unit
@test.anno(x = "top level class") public final class C1 {
@test.anno(x = "constructor") public constructor C1()
@test.anno(x = "member property") public final val p3: kotlin.Nothing?
@test.anno(x = "member extension property") public final val kotlin.Int.v4: kotlin.Int
@test.anno(x = "member function") public final fun f3(/*0*/ @test.anno(x = "member function parameter") p: kotlin.Int): kotlin.Unit
@test.anno(x = "member extension function") public final fun kotlin.String.f4(): kotlin.Unit
test.anno(x = "nested class") public final class C2 {
@test.anno(x = "nested class") public final class C2 {
public constructor C2()
}
test.anno(x = "companion object") public companion object Companion {
@test.anno(x = "companion object") public companion object Companion {
private constructor Companion()
}
}
kotlin.annotation.annotation() public final class anno : kotlin.Annotation {
@kotlin.annotation.annotation() public final class anno : kotlin.Annotation {
public constructor anno(/*0*/ x: kotlin.String)
public final val x: kotlin.String
}