DescriptorRenderer to render annotations for all types + separate option to render annotation arguments + use it in IdeDescriptorRenderers
This commit is contained in:
+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()
|
||||
|
||||
Reference in New Issue
Block a user