fix(kotlin): use @attribute instead of @annotation

This commit is contained in:
Sal Bakraa 2022-01-06 02:59:35 +03:00 committed by Stephan Seitz
parent f92d11cdee
commit b963e9f994

View file

@ -318,24 +318,24 @@
(annotation
"@" @annotation (use_site_target)? @annotation)
"@" @attribute (use_site_target)? @attribute)
(annotation
(user_type
(type_identifier) @annotation))
(type_identifier) @attribute))
(annotation
(constructor_invocation
(user_type
(type_identifier) @annotation)))
(type_identifier) @attribute)))
(file_annotation
"@" @annotation "file" @annotation ":" @annotation)
"@" @attribute "file" @attribute ":" @attribute)
(file_annotation
(user_type
(type_identifier) @annotation))
(type_identifier) @attribute))
(file_annotation
(constructor_invocation
(user_type
(type_identifier) @annotation)))
(type_identifier) @attribute)))
;;; Operators & Punctuation