Mark freshly supported annotations to use that mark for reporting corresponding warnings

This commit is contained in:
Victor Petukhov
2020-12-11 17:29:12 +03:00
parent 9693ea19fb
commit d6017420de
5 changed files with 21 additions and 9 deletions
@@ -48,8 +48,8 @@ interface JavaTypeParameterListOwner : JavaElement {
interface JavaAnnotation : JavaElement {
val arguments: Collection<JavaAnnotationArgument>
val classId: ClassId?
val isIdeExternalAnnotation: Boolean
get() = false
val isIdeExternalAnnotation: Boolean get() = false
val isFreshlySupportedTypeUseAnnotation: Boolean get() = false
fun resolve(): JavaClass?
}