DescriptorRenderer to render annotations for all types + separate option to render annotation arguments + use it in IdeDescriptorRenderers
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
@test.AnnotatedAnnotation() public final annotation class AnnotatedAnnotation : kotlin.Annotation {
|
||||
@test.AnnotatedAnnotation public final annotation class AnnotatedAnnotation : kotlin.Annotation {
|
||||
/*primary*/ public constructor AnnotatedAnnotation()
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -9,7 +9,7 @@ public final class Class {
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
@field:test.Anno() public final var property: kotlin.Int
|
||||
@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
-1
@@ -6,6 +6,6 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
@test.Anno() public final val x: kotlin.Int
|
||||
@test.Anno public final val x: kotlin.Int
|
||||
public final fun <get-x>(): kotlin.Int
|
||||
}
|
||||
|
||||
+2
-2
@@ -13,11 +13,11 @@ public final annotation class Bnno : kotlin.Annotation {
|
||||
}
|
||||
|
||||
public final enum class Eee : kotlin.Enum<test.Eee> {
|
||||
@test.Anno() enum entry Entry1
|
||||
@test.Anno enum entry Entry1
|
||||
|
||||
enum entry Entry2
|
||||
|
||||
@test.Anno(value = "3") @test.Bnno() enum entry Entry3
|
||||
@test.Anno(value = "3") @test.Bnno enum entry Entry3
|
||||
|
||||
@test.Anno(value = "4", x = 4) enum entry Entry4
|
||||
|
||||
|
||||
+1
-1
@@ -6,5 +6,5 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
@test.Anno() public final fun foo(): kotlin.Unit
|
||||
@test.Anno public final fun foo(): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -7,5 +7,5 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
public final val property: kotlin.Int
|
||||
@test.Anno() public final fun <get-property>(): kotlin.Int
|
||||
@test.Anno public final fun <get-property>(): kotlin.Int
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
@field:test.Anno() public final var property: kotlin.Int
|
||||
@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
-1
@@ -8,5 +8,5 @@ public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
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
|
||||
@test.Anno public final fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -20,6 +20,6 @@ public final class A {
|
||||
}
|
||||
}
|
||||
|
||||
@test.A.Companion.Anno1() @test.A.Companion.B.Anno2() public final class C {
|
||||
@test.A.Companion.Anno1 @test.A.Companion.B.Anno2 public final class C {
|
||||
/*primary*/ public constructor C()
|
||||
}
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ public final class Class {
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
|
||||
@test.Anno() public final class Nested {
|
||||
@test.Anno public final class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
|
||||
@test.Anno() public companion object Companion {
|
||||
@test.Anno public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -4,7 +4,7 @@ public final annotation class `$$$$$$` : kotlin.Annotation {
|
||||
/*primary*/ public constructor `$$$$$$`()
|
||||
}
|
||||
|
||||
@test.`$$$$$$`() public final class A {
|
||||
@test.`$$$$$$` public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
@@ -12,6 +12,6 @@ public final annotation class `Anno$tation` : kotlin.Annotation {
|
||||
/*primary*/ public constructor `Anno$tation`()
|
||||
}
|
||||
|
||||
@test.`Anno$tation`() public final class `Cla$s` {
|
||||
@test.`Anno$tation` public final class `Cla$s` {
|
||||
/*primary*/ public constructor `Cla$s`()
|
||||
}
|
||||
|
||||
+1
-1
@@ -12,6 +12,6 @@ public final annotation class A3 : kotlin.Annotation {
|
||||
/*primary*/ public constructor A3()
|
||||
}
|
||||
|
||||
@test.A1() @test.A2() @test.A3() public final class Class {
|
||||
@test.A1 @test.A2 @test.A3 public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
}
|
||||
|
||||
+2
-2
@@ -8,7 +8,7 @@ public final class A {
|
||||
}
|
||||
}
|
||||
|
||||
@test.A.Anno() public final class B {
|
||||
@test.A.Anno public final class B {
|
||||
/*primary*/ public constructor B()
|
||||
@test.A.Anno() public final fun f(): kotlin.Unit
|
||||
@test.A.Anno public final fun f(): kotlin.Unit
|
||||
}
|
||||
|
||||
+2
-2
@@ -7,11 +7,11 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
|
||||
@test.Anno() public final inner class Inner {
|
||||
@test.Anno public final inner class Inner {
|
||||
/*primary*/ public constructor Inner()
|
||||
}
|
||||
|
||||
@test.Anno() public final class Nested {
|
||||
@test.Anno public final class Nested {
|
||||
/*primary*/ public constructor Nested()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
}
|
||||
|
||||
@test.Anno() public final class X {
|
||||
@test.Anno public final class X {
|
||||
/*primary*/ public constructor X()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
@test.Anno() public val x: kotlin.Int
|
||||
@test.Anno public val x: kotlin.Int
|
||||
public fun <get-x>(): kotlin.Int
|
||||
|
||||
public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
@test.Anno() public fun function(): kotlin.Unit
|
||||
@test.Anno public fun function(): kotlin.Unit
|
||||
|
||||
public final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
public val property: kotlin.Int
|
||||
@test.Anno() public fun <get-property>(): kotlin.Int
|
||||
@test.Anno public fun <get-property>(): kotlin.Int
|
||||
|
||||
public final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
@field:test.Anno() public var property: kotlin.Int
|
||||
@field:test.Anno public var property: kotlin.Int
|
||||
public fun <get-property>(): kotlin.Int
|
||||
public fun <set-property>(/*0*/ <set-?>: kotlin.Int): kotlin.Unit
|
||||
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
public var property: kotlin.Int
|
||||
public fun <get-property>(): kotlin.Int
|
||||
@test.Anno() public fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
|
||||
@test.Anno public fun <set-property>(/*0*/ value: kotlin.Int): kotlin.Unit
|
||||
|
||||
public final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ public final annotation class B : kotlin.Annotation {
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ public final annotation class B : kotlin.Annotation {
|
||||
}
|
||||
|
||||
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 override /*1*/ /*fake_override*/ val name: kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ fun <get-name>(): kotlin.String
|
||||
public final override /*1*/ /*fake_override*/ val ordinal: kotlin.Int
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
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
|
||||
|
||||
public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
Vendored
+1
-1
@@ -6,5 +6,5 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
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
+1
-1
@@ -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
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,5 +6,5 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
+1
-1
@@ -5,5 +5,5 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,7 +1,7 @@
|
||||
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
|
||||
|
||||
public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
+1
-1
@@ -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
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public fun foo(/*0*/ @test.Anno() x: kotlin.Int): kotlin.Unit
|
||||
public fun foo(/*0*/ @test.Anno x: kotlin.Int): kotlin.Unit
|
||||
|
||||
public final annotation class Anno : kotlin.Annotation {
|
||||
/*primary*/ public constructor Anno()
|
||||
|
||||
Vendored
+1
-1
@@ -2,7 +2,7 @@ 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
|
||||
|
||||
public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
Vendored
+1
-1
@@ -6,6 +6,6 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
@test.Anno() public final val property: kotlin.Int
|
||||
@test.Anno public final val property: kotlin.Int
|
||||
public final fun <get-property>(): kotlin.Int
|
||||
}
|
||||
|
||||
compiler/testData/loadJava/compiledKotlin/annotations/propertiesWithoutBackingFields/ClassObject.txt
Vendored
+1
-1
@@ -9,7 +9,7 @@ public final class Class {
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
@test.Anno() public final val property: kotlin.Int
|
||||
@test.Anno public final val property: kotlin.Int
|
||||
public final fun <get-property>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
+3
-3
@@ -2,11 +2,11 @@ package test
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
@test.DoubleAnno() public final val kotlin.Double.extension: kotlin.Int
|
||||
@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
|
||||
@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
|
||||
@test.StringAnno public final val kotlin.String.extension: kotlin.String
|
||||
public final fun kotlin.String.<get-extension>(): kotlin.String
|
||||
}
|
||||
|
||||
|
||||
+3
-3
@@ -1,10 +1,10 @@
|
||||
package test
|
||||
|
||||
@test.DoubleAnno() public val kotlin.Double.extension: kotlin.Int
|
||||
@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
|
||||
@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
|
||||
@test.StringAnno public val kotlin.String.extension: kotlin.String
|
||||
public fun kotlin.String.<get-extension>(): kotlin.String
|
||||
|
||||
public final annotation class DoubleAnno : kotlin.Annotation {
|
||||
|
||||
compiler/testData/loadJava/compiledKotlin/annotations/propertiesWithoutBackingFields/NestedTrait.txt
Vendored
+1
-1
@@ -8,7 +8,7 @@ public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
|
||||
public interface Trait {
|
||||
@test.Anno() public abstract val property: kotlin.Int
|
||||
@test.Anno public abstract val property: kotlin.Int
|
||||
public abstract fun <get-property>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
@test.Anno() public val property: kotlin.Int
|
||||
@test.Anno public val property: kotlin.Int
|
||||
public fun <get-property>(): kotlin.Int
|
||||
|
||||
public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
Vendored
+1
-1
@@ -5,6 +5,6 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
}
|
||||
|
||||
public interface Trait {
|
||||
@test.Anno() public abstract val property: kotlin.Int
|
||||
@test.Anno public abstract val property: kotlin.Int
|
||||
public abstract fun <get-property>(): kotlin.Int
|
||||
}
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ public interface Trait {
|
||||
|
||||
public companion object Companion {
|
||||
/*primary*/ private constructor Companion()
|
||||
@test.Anno() public final val property: kotlin.Int
|
||||
@test.Anno public final val property: kotlin.Int
|
||||
public final fun <get-property>(): kotlin.Int
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public fun @test.A() kotlin.String.foo(): kotlin.Unit
|
||||
public fun @test.A kotlin.String.foo(): kotlin.Unit
|
||||
|
||||
@kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
+1
-1
@@ -6,5 +6,5 @@ package test
|
||||
|
||||
public final class SimpleTypeAnnotation {
|
||||
/*primary*/ public constructor SimpleTypeAnnotation()
|
||||
public final fun foo(/*0*/ x: @test.A() kotlin.ranges.IntRange): @test.A() kotlin.Int
|
||||
public final fun foo(/*0*/ x: @test.A kotlin.ranges.IntRange): @test.A kotlin.Int
|
||||
}
|
||||
|
||||
+2
-2
@@ -4,10 +4,10 @@ public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
}
|
||||
|
||||
public interface Foo</*0*/ T : @test.A() kotlin.Number> : @test.A() kotlin.CharSequence {
|
||||
public interface Foo</*0*/ T : @test.A kotlin.Number> : @test.A kotlin.CharSequence {
|
||||
public abstract override /*1*/ /*fake_override*/ val length: kotlin.Int
|
||||
public abstract override /*1*/ /*fake_override*/ fun <get-length>(): kotlin.Int
|
||||
public abstract fun </*0*/ E, /*1*/ F : @test.A() E> bar(): kotlin.Unit
|
||||
public abstract fun </*0*/ E, /*1*/ F : @test.A E> bar(): kotlin.Unit
|
||||
public abstract override /*1*/ /*fake_override*/ fun get(/*0*/ index: kotlin.Int): kotlin.Char
|
||||
public abstract override /*1*/ /*fake_override*/ fun subSequence(/*0*/ startIndex: kotlin.Int, /*1*/ endIndex: kotlin.Int): kotlin.CharSequence
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
public fun foo(/*0*/ bar: kotlin.collections.Map<@test.A() kotlin.String, kotlin.collections.List<@test.A() kotlin.Int>>): kotlin.Unit
|
||||
public fun foo(/*0*/ bar: kotlin.collections.Map<@test.A kotlin.String, kotlin.collections.List<@test.A kotlin.Int>>): kotlin.Unit
|
||||
|
||||
@kotlin.annotation.Target(allowedTargets = {AnnotationTarget.TYPE}) public final annotation class A : kotlin.Annotation {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
+1
-1
@@ -6,5 +6,5 @@ package test
|
||||
|
||||
public final class SimpleTypeParameterAnnotation {
|
||||
/*primary*/ public constructor SimpleTypeParameterAnnotation()
|
||||
public final fun </*0*/ @test.A() T> foo(/*0*/ x: T): kotlin.Unit
|
||||
public final fun </*0*/ @test.A T> foo(/*0*/ x: T): kotlin.Unit
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
@delegate:test.Anno() public final val property: kotlin.String
|
||||
@delegate:test.Anno public final val property: kotlin.String
|
||||
public final fun <get-property>(): kotlin.String
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ public final annotation class Anno : kotlin.Annotation {
|
||||
|
||||
public final class Class {
|
||||
/*primary*/ public constructor Class()
|
||||
@field:test.Anno() public final var property: kotlin.Int
|
||||
@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
|
||||
}
|
||||
|
||||
+6
-6
@@ -2,12 +2,12 @@ package test
|
||||
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
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
|
||||
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}) public final annotation class Ann : kotlin.Annotation {
|
||||
|
||||
Reference in New Issue
Block a user