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
"@" @annotation (use_site_target)? @annotation) "@" @attribute (use_site_target)? @attribute)
(annotation (annotation
(user_type (user_type
(type_identifier) @annotation)) (type_identifier) @attribute))
(annotation (annotation
(constructor_invocation (constructor_invocation
(user_type (user_type
(type_identifier) @annotation))) (type_identifier) @attribute)))
(file_annotation (file_annotation
"@" @annotation "file" @annotation ":" @annotation) "@" @attribute "file" @attribute ":" @attribute)
(file_annotation (file_annotation
(user_type (user_type
(type_identifier) @annotation)) (type_identifier) @attribute))
(file_annotation (file_annotation
(constructor_invocation (constructor_invocation
(user_type (user_type
(type_identifier) @annotation))) (type_identifier) @attribute)))
;;; Operators & Punctuation ;;; Operators & Punctuation