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.
15 lines
202 B
Scheme
15 lines
202 B
Scheme
3 years ago
|
; Scopes
|
||
|
|
||
|
(function_body) @local.scope
|
||
|
|
||
|
; Definitions
|
||
|
|
||
|
(argument
|
||
|
(value (var (local_var) @local.definition)))
|
||
|
|
||
|
(instruction
|
||
|
(local_var) @local.definition)
|
||
|
|
||
|
; References
|
||
|
(local_var) @local.reference
|