[FIR] Add some kdocs to FirRegisteredPluginAnnotations

This commit is contained in:
Roman Golyshev
2021-11-25 18:03:30 +03:00
committed by teamcity
parent aabd5d98bb
commit 57c30ee2d1
@@ -21,7 +21,15 @@ abstract class FirRegisteredPluginAnnotations(val session: FirSession) : FirSess
}
}
/**
* Contains all annotations that can be targeted by the plugins. It includes the annotations directly mentioned by the plugin,
* and all the user-defined annotations which are meta-annotated by the annotations from the [metaAnnotations] list.
*/
abstract val annotations: Set<AnnotationFqn>
/**
* Contains meta-annotations that can be targeted by the plugins.
*/
abstract val metaAnnotations: Set<AnnotationFqn>
val hasRegisteredAnnotations: Boolean