FIR IDE: introduce methods for working with annotations

This commit is contained in:
Ilya Kirillov
2021-01-07 14:03:26 +01:00
parent 191a1ee242
commit f454ec8e4a
47 changed files with 369 additions and 50 deletions
@@ -22,4 +22,7 @@ data class KtNamedConstantValue(val name: String, val expression: KtConstantValu
interface KtAnnotatedSymbol : KtSymbol {
val annotations: List<KtAnnotationCall>
fun containsAnnotation(classId: ClassId): Boolean
val annotationClassIds: Collection<ClassId>
}