2021-04-09 10:42:49 +02:00
|
|
|
; Scopes
|
|
|
|
;-------
|
|
|
|
|
|
|
|
[
|
|
|
|
(statement_block)
|
|
|
|
(function)
|
|
|
|
(arrow_function)
|
|
|
|
(function_declaration)
|
|
|
|
(method_definition)
|
|
|
|
] @local.scope
|
|
|
|
|
|
|
|
; Definitions
|
|
|
|
;------------
|
|
|
|
|
2022-08-01 22:15:17 +02:00
|
|
|
(pattern/identifier) @local.definition
|
|
|
|
|
|
|
|
(pattern/rest_pattern
|
|
|
|
(identifier) @local.definition)
|
|
|
|
|
|
|
|
(arrow_function
|
|
|
|
parameter: (identifier) @local.definition)
|
2021-04-09 10:42:49 +02:00
|
|
|
|
|
|
|
(variable_declarator
|
|
|
|
name: (identifier) @local.definition)
|
|
|
|
|
|
|
|
; References
|
|
|
|
;------------
|
|
|
|
|
|
|
|
(identifier) @local.reference
|