[FIR] Visit class annotations without the class's scope

This commit is contained in:
Nick
2020-08-25 11:31:53 +03:00
parent 3cad88a58c
commit fd9bfe44f1
5 changed files with 57 additions and 0 deletions
@@ -0,0 +1,22 @@
// FILE: State.java
package simulation
@Retention(RetentionPolicy.RUNTIME)
public @interface State {
@NotNull @NonNls
String name();
String @NotNull [] storages() default {};
}
// FILE: KotlinImporterComponent.kt
package simulation
// KotlinMavenImporter.kt:407:1
@State(
name = "AutoImportedSourceRoots"
)
class KotlinImporterComponent {
class State(var directories: List<String> = ArrayList())
}