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,9 @@
(function_declarator
declarator: [(identifier) (field_identifier)] @definition.function)
(preproc_function_def name: (identifier) @definition.function)
(type_definition
declarator: (type_identifier) @definition.type)
(preproc_def name: (identifier) @definition.constant)

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))

View file

@ -0,0 +1,10 @@
((call
target: (identifier) @_keyword
(arguments
[
(call target: (identifier) @definition.function)
; function has a guard
(binary_operator
left: (call target: (identifier) @definition.function))
]))
(#any-of? @_keyword "def" "defdelegate" "defguard" "defguardp" "defmacro" "defmacrop" "defn" "defnp" "defp"))

View file

@ -0,0 +1,45 @@
; Modules
(attribute
name: (atom) @_attr
(arguments (atom) @definition.module)
(#eq? @_attr "module"))
; Constants
((attribute
name: (atom) @_attr
(arguments
.
[
(atom) @definition.constant
(call function: [(variable) (atom)] @definition.macro)
]))
(#eq? @_attr "define"))
; Record definitions
((attribute
name: (atom) @_attr
(arguments
.
(atom) @definition.struct))
(#eq? @_attr "record"))
; Function specs
((attribute
name: (atom) @_attr
(stab_clause name: (atom) @definition.interface))
(#eq? @_attr "spec"))
; Types
((attribute
name: (atom) @_attr
(arguments
(binary_operator
left: [
(atom) @definition.type
(call function: (atom) @definition.type)
]
operator: "::")))
(#any-of? @_attr "type" "opaque"))
; Functions
(function_clause name: (atom) @definition.function)

View file

@ -0,0 +1,2 @@
; TODO: have symbol types for markup?
(atx_heading) @definition.class

View file

@ -0,0 +1,5 @@
(function_definition
name: (identifier) @definition.function)
(class_definition
name: (identifier) @definition.class)