blob: 70b31e50924b387aeea6e920bb0f58605b0cbfae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
; -----------
; 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
|