Add initial symbols queries

This commit is contained in:
Michael Davis 2024-11-08 09:56:22 -05:00
parent cc3b77b584
commit 02c5df9031
No known key found for this signature in database
6 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,12 @@
; inherits: c
(function_declarator
declarator: (qualified_identifier name: (identifier) @definition.function))
(struct_specifier
name: (type_identifier) @definition.struct
body: (field_declaration_list))
(class_specifier
name: (type_identifier) @definition.class
body: (field_declaration_list))