DescriptorRenderer to render annotations for all types + separate option to render annotation arguments + use it in IdeDescriptorRenderers

This commit is contained in:
Valentin Kipyatkov
2016-09-30 21:34:22 +03:00
parent 8baa9ba1de
commit ec51076355
373 changed files with 1433 additions and 1355 deletions
@@ -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()
}
@@ -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()
}
}
@@ -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()
}
}
@@ -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`()
}
@@ -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()
}
@@ -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
}
@@ -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()
}