mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +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
19 lines
432 B
Java
Vendored
19 lines
432 B
Java
Vendored
public final class Annotations {
|
|
@p.R(s = "a")
|
|
@p.R(s = "b")
|
|
@p.R(s = "c")
|
|
public final void repeatables1() { /* compiled code */ }
|
|
|
|
@p.R(s = "a")
|
|
public final void repeatables2() { /* compiled code */ }
|
|
|
|
@p.R(s = "a")
|
|
@p.S(g = "b")
|
|
@p.R(s = "c")
|
|
@p.S(g = "D")
|
|
@p.R(s = "f")
|
|
public final void repeatables3() { /* compiled code */ }
|
|
|
|
public Annotations() { /* compiled code */ }
|
|
}
|