blob: eff949a0dacc8d9e4169b4e69dc49e56a305fc77 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
; References
(identifier) @local.reference
; Definitions
(assignment
.
(identifier) @local.definition.var)
(assignment
.
(tuple_expression
(identifier) @local.definition.var))
(assignment
.
(open_tuple
(identifier) @local.definition.var))
(for_binding
.
(identifier) @local.definition.var)
(for_binding
.
(tuple_expression
(identifier) @local.definition.var))
(import_statement
(identifier) @local.definition.import)
(using_statement
(identifier) @local.definition.import)
(selected_import
(identifier) @local.definition.import)
(module_definition
.
(identifier) @local.definition.type)
(type_head
(identifier) @local.definition.type)
(type_head
(binary_expression
.
(identifier) @local.definition.type))
(function_definition
(signature
(call_expression
.
(identifier) @local.definition.function))) @local.scope
(macro_definition
(signature
(call_expression
.
(identifier) @local.definition.function))) @local.scope
; Scopes
[
(quote_statement)
(let_statement)
(for_statement)
(while_statement)
(try_statement)
(catch_clause)
(finally_clause)
(do_clause)
] @local.scope
|