mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 19:00:02 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
310f0925ec
commit
692b051b09
1247 changed files with 6096 additions and 9074 deletions
79
runtime/queries/d/locals.scm
Normal file
79
runtime/queries/d/locals.scm
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
; Scopes
|
||||
[
|
||||
(source_file)
|
||||
(block_statement)
|
||||
(aggregate_body)
|
||||
] @local.scope
|
||||
|
||||
; References
|
||||
(identifier) @local.reference
|
||||
|
||||
; Definitions
|
||||
(module_def
|
||||
(module_declaration
|
||||
(module_fqn) @local.definition.namespace)
|
||||
(#set! definition.namespace.scope "global"))
|
||||
|
||||
(enum_declaration
|
||||
(enum_member
|
||||
.
|
||||
(identifier) @local.definition.enum))
|
||||
|
||||
(class_declaration
|
||||
(class)
|
||||
.
|
||||
(identifier) @local.definition.type)
|
||||
|
||||
(struct_declaration
|
||||
(struct)
|
||||
.
|
||||
(identifier) @local.definition.type)
|
||||
|
||||
(union_declaration
|
||||
(union)
|
||||
.
|
||||
(identifier) @local.definition.type)
|
||||
|
||||
(enum_declaration
|
||||
(enum)
|
||||
.
|
||||
(identifier) @local.definition.type)
|
||||
|
||||
(alias_declaration
|
||||
(alias_initializer
|
||||
.
|
||||
(identifier) @local.definition.type))
|
||||
|
||||
(constructor
|
||||
(this) @local.definition.method)
|
||||
|
||||
(destructor
|
||||
(this) @local.definition.method)
|
||||
|
||||
(postblit
|
||||
(this) @local.definition.method)
|
||||
|
||||
(aggregate_body
|
||||
(function_declaration
|
||||
(identifier) @local.definition.method))
|
||||
|
||||
(manifest_declarator
|
||||
.
|
||||
(identifier) @local.definition.constant)
|
||||
|
||||
(anonymous_enum_declaration
|
||||
(enum_member
|
||||
.
|
||||
(identifier) @local.definition.constant))
|
||||
|
||||
(variable_declaration
|
||||
(declarator
|
||||
(identifier) @local.definition.var))
|
||||
|
||||
(aggregate_body
|
||||
(variable_declaration
|
||||
(declarator
|
||||
(identifier) @local.definition.field)))
|
||||
|
||||
(function_declaration
|
||||
(identifier) @local.definition.function)
|
||||
Loading…
Add table
Add a link
Reference in a new issue