[FIR] Visit class annotations without the class's scope
This commit is contained in:
+22
@@ -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())
|
||||
}
|
||||
Reference in New Issue
Block a user