Regenerate test data containing rendered descriptors
Introduced '@' after each annotation
This commit is contained in:
+3
-3
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
/*primary*/ public constructor B()
|
||||
}
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class(/*0*/ test.A() x: kotlin.Int, /*1*/ test.B() y: kotlin.String)
|
||||
/*primary*/ public constructor Class(/*0*/ @test.A() x: kotlin.Int, /*1*/ @test.B() y: kotlin.String)
|
||||
public final val x: kotlin.Int
|
||||
public final fun <get-x>(): kotlin.Int
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,15 +1,15 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
/*primary*/ public constructor B()
|
||||
}
|
||||
|
||||
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)
|
||||
/*primary*/ private constructor E(/*0*/ @test.A() x: kotlin.String, /*1*/ @test.B() y: kotlin.Int)
|
||||
public final val x: kotlin.String
|
||||
public final fun <get-x>(): kotlin.String
|
||||
public final val y: kotlin.Int
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
public 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() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
Vendored
+2
-2
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
public 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
+2
-2
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
@@ -8,5 +8,5 @@ public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
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
|
||||
public final fun kotlin.Int.<set-foo>(/*0*/ @test.A() value: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
public final fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Unit
|
||||
public final fun foo(/*0*/ @test.Anno() x: kotlin.String): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
public interface Trait {
|
||||
public open fun foo(/*0*/ test.Anno() x: kotlin.String): kotlin.Int
|
||||
public open fun foo(/*0*/ @test.Anno() x: kotlin.String): kotlin.Int
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A(/*0*/ s: kotlin.String)
|
||||
public final val s: kotlin.String
|
||||
public final fun <get-s>(): kotlin.String
|
||||
@@ -10,13 +10,13 @@ public final class Outer {
|
||||
/*primary*/ public constructor Outer()
|
||||
|
||||
public final inner class Inner {
|
||||
/*primary*/ public constructor Inner(/*0*/ test.A(s = "inner") y: kotlin.String)
|
||||
/*primary*/ public constructor Inner(/*0*/ @test.A(s = "inner") y: kotlin.String)
|
||||
public final val y: kotlin.String
|
||||
public final fun <get-y>(): kotlin.String
|
||||
}
|
||||
|
||||
public final class Nested {
|
||||
/*primary*/ public constructor Nested(/*0*/ test.A(s = "nested") x: kotlin.String)
|
||||
/*primary*/ public constructor Nested(/*0*/ @test.A(s = "nested") x: kotlin.String)
|
||||
public final val x: kotlin.String
|
||||
public final fun <get-x>(): kotlin.String
|
||||
}
|
||||
|
||||
+6
-6
@@ -1,20 +1,20 @@
|
||||
package test
|
||||
|
||||
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
|
||||
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() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class B : kotlin.Annotation {
|
||||
/*primary*/ public constructor B()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() public final class C : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class C : kotlin.Annotation {
|
||||
/*primary*/ public constructor C()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() public final class D : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class D : kotlin.Annotation {
|
||||
/*primary*/ public constructor D()
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
@@ -8,5 +8,5 @@ public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
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
|
||||
public final fun <set-foo>(/*0*/ @test.A() value: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
public fun foo(/*0*/ test.Anno() x: kotlin.Int): kotlin.Unit
|
||||
public fun foo(/*0*/ @test.Anno() x: kotlin.Int): kotlin.Unit
|
||||
|
||||
kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
Vendored
+3
-3
@@ -2,12 +2,12 @@ package test
|
||||
|
||||
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
|
||||
public fun <set-foo>(/*0*/ @test.A() @test.B() value: kotlin.Int): kotlin.Unit
|
||||
|
||||
kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
@kotlin.annotation.annotation() public final class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
kotlin.annotation.annotation() public 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