JavaElementFinder: support repeatable annotation container

^KTIJ-19318
This commit is contained in:
Dmitry Gridin
2021-09-09 14:13:19 +07:00
committed by Space
parent 8ba164163c
commit 862e87b1ba
4 changed files with 74 additions and 24 deletions
@@ -0,0 +1,11 @@
@Repeatable
annotation class RepeatableAnnotation(val value: Int)
@Repeatable
@JvmRepeatable(RepeatableAnnotation2Container::class)
annotation class RepeatableAnnotation2(val value: Int)
annotation class RepeatableAnnotation2Container(val value: Array<RepeatableAnnotation2>)
@JvmRepeatable(RepeatableAnnotation3Container::class)
annotation class RepeatableAnnotation3(val value: Int)
annotation class RepeatableAnnotation3Container(val value: Array<RepeatableAnnotation3>)