forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
447 B
Scheme
30 lines
447 B
Scheme
2 years ago
|
; Scopes
|
||
|
;-------
|
||
|
|
||
|
[
|
||
|
(statement_block)
|
||
|
(function)
|
||
|
(arrow_function)
|
||
|
(function_declaration)
|
||
|
(method_definition)
|
||
|
] @local.scope
|
||
|
|
||
|
; Definitions
|
||
|
;------------
|
||
|
|
||
|
(pattern/identifier) @local.definition
|
||
|
|
||
|
(pattern/rest_pattern
|
||
|
(identifier) @local.definition)
|
||
|
|
||
|
(arrow_function
|
||
|
parameter: (identifier) @local.definition)
|
||
|
|
||
|
(variable_declarator
|
||
|
name: (identifier) @local.definition)
|
||
|
|
||
|
; References
|
||
|
;------------
|
||
|
|
||
|
(identifier) @local.reference
|