mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
Allow to get annotation list and to invoke `findAnnotation` without building delegate
Introduce KtLightNullabilityAnnotation which holds nullability information and is built
before delegate is built
8 lines
153 B
Kotlin
Vendored
8 lines
153 B
Kotlin
Vendored
// Anno
|
|
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
@Target(AnnotationTarget.TYPE_PARAMETER)
|
|
@MustBeDocumented
|
|
@Repeatable
|
|
annotation class Anno(val i: Int)
|