mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-09 06:50:06 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
c13e28f894
commit
2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions
67
runtime/queries/squirrel/locals.scm
Normal file
67
runtime/queries/squirrel/locals.scm
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
; Scopes
|
||||
|
||||
[
|
||||
(script)
|
||||
(class_declaration)
|
||||
(enum_declaration)
|
||||
(function_declaration)
|
||||
(attribute_declaration)
|
||||
|
||||
(array)
|
||||
(block)
|
||||
(table)
|
||||
(anonymous_function)
|
||||
(parenthesized_expression)
|
||||
|
||||
(if_statement)
|
||||
(else_statement)
|
||||
(while_statement)
|
||||
(do_while_statement)
|
||||
(switch_statement)
|
||||
(for_statement)
|
||||
(foreach_statement)
|
||||
(try_statement)
|
||||
(catch_statement)
|
||||
] @scope
|
||||
|
||||
|
||||
; References
|
||||
|
||||
[
|
||||
(identifier)
|
||||
(global_variable)
|
||||
] @reference
|
||||
|
||||
; Definitions
|
||||
|
||||
(const_declaration
|
||||
. (identifier) @definition.constant)
|
||||
|
||||
(enum_declaration
|
||||
. (identifier) @definition.enum)
|
||||
|
||||
(member_declaration
|
||||
(identifier) @definition.field
|
||||
. "=")
|
||||
|
||||
(table_slot
|
||||
. (identifier) @definition.field
|
||||
. ["=" ":"])
|
||||
|
||||
((function_declaration
|
||||
. (identifier) @definition.function)
|
||||
(#not-has-ancestor? @definition.function member_declaration))
|
||||
|
||||
(member_declaration
|
||||
(function_declaration
|
||||
. (identifier) @definition.method))
|
||||
|
||||
(class_declaration
|
||||
. (identifier) @definition.type)
|
||||
|
||||
(var_statement
|
||||
"var" . (identifier) @definition.variable)
|
||||
|
||||
(local_declaration
|
||||
(identifier) @definition.variable
|
||||
. "=")
|
||||
Loading…
Add table
Add a link
Reference in a new issue