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.
45 lines
678 B
Scheme
45 lines
678 B
Scheme
; -----------
|
|
; Definitions
|
|
; -----------
|
|
|
|
; Imports
|
|
(import_statement
|
|
(identifier) @local.definition)
|
|
|
|
; Constants
|
|
(const_statement
|
|
(variable_declaration
|
|
. (identifier) @local.definition))
|
|
|
|
; Parameters
|
|
(parameter_list
|
|
(identifier) @local.definition)
|
|
|
|
(typed_parameter
|
|
. (identifier) @local.definition)
|
|
|
|
(optional_parameter .
|
|
(identifier) @local.definition)
|
|
|
|
(slurp_parameter
|
|
(identifier) @local.definition)
|
|
|
|
(function_expression
|
|
. (identifier) @local.definition)
|
|
|
|
; ------
|
|
; Scopes
|
|
; ------
|
|
|
|
[
|
|
(function_definition)
|
|
(short_function_definition)
|
|
(macro_definition)
|
|
] @local.scope
|
|
|
|
; ----------
|
|
; References
|
|
; ----------
|
|
|
|
(identifier) @local.reference
|