diff --git a/runtime/queries/c/symbols.scm b/runtime/queries/c/symbols.scm new file mode 100644 index 000000000..f39212711 --- /dev/null +++ b/runtime/queries/c/symbols.scm @@ -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) diff --git a/runtime/queries/cpp/symbols.scm b/runtime/queries/cpp/symbols.scm new file mode 100644 index 000000000..3e01de330 --- /dev/null +++ b/runtime/queries/cpp/symbols.scm @@ -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)) diff --git a/runtime/queries/elixir/symbols.scm b/runtime/queries/elixir/symbols.scm new file mode 100644 index 000000000..bf711b078 --- /dev/null +++ b/runtime/queries/elixir/symbols.scm @@ -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")) diff --git a/runtime/queries/erlang/symbols.scm b/runtime/queries/erlang/symbols.scm new file mode 100644 index 000000000..0aa0e33c2 --- /dev/null +++ b/runtime/queries/erlang/symbols.scm @@ -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) diff --git a/runtime/queries/markdown/symbols.scm b/runtime/queries/markdown/symbols.scm new file mode 100644 index 000000000..38a69718e --- /dev/null +++ b/runtime/queries/markdown/symbols.scm @@ -0,0 +1,2 @@ +; TODO: have symbol types for markup? +(atx_heading) @definition.class diff --git a/runtime/queries/python/symbols.scm b/runtime/queries/python/symbols.scm new file mode 100644 index 000000000..c9454eb51 --- /dev/null +++ b/runtime/queries/python/symbols.scm @@ -0,0 +1,5 @@ +(function_definition + name: (identifier) @definition.function) + +(class_definition + name: (identifier) @definition.class)