feat(idl): update parser and queries (#6901)

Signed-off-by: DragonBillow <DragonBillow@outlook.com>
This commit is contained in:
DragonBillow 2024-07-10 20:05:13 +08:00 committed by GitHub
parent e9ec8b4658
commit d5969c481e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 2 deletions

View file

@ -106,7 +106,12 @@
(boolean_literal) @boolean
(number_literal) @number
(integer_literal) @number
[
(floating_pt_literal)
(fixed_pt_literal)
] @number.float
(char_literal) @character
@ -400,3 +405,11 @@
(system_lib_string
"<" @string
">" @string)
(extend_annotation_appl
"//@" @attribute
(annotation_appl_custom_body))
(extend_annotation_appl
"//@" @attribute.builtin
(annotation_appl_builtin_body))