blob: c184874837ace4c7083586bfea1a92e5fb68901b (
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
|
; Scopes
(function
body: (_) @local.scope)
; Definitions
(arg
(variable) @local.definition.parameter)
(assign
(identifier) @local.definition.var)
(for_args
(variable) @local.definition.var)
(match_patterns
(variable) @local.definition.var)
(import_item
(identifier) @local.definition.import)
(entry_block
(identifier) @local.definition.field)
(entry_inline
(identifier) @local.definition.field)
; References
(identifier) @local.reference
|