blob: 2cd7b9e8909dfece056c866cf2419133c7f0fe49 (
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
72
73
74
75
76
77
78
79
|
; Scopes
[
(source_file)
(block_statement)
(aggregate_body)
] @local.scope
; References
(identifier) @local.reference
; Definitions
(module_def
(module_declaration
(module_fqn) @local.definition.namespace)
(#set! definition.namespace.scope "global"))
(enum_declaration
(enum_member
.
(identifier) @local.definition.enum))
(class_declaration
(class)
.
(identifier) @local.definition.type)
(struct_declaration
(struct)
.
(identifier) @local.definition.type)
(union_declaration
(union)
.
(identifier) @local.definition.type)
(enum_declaration
(enum)
.
(identifier) @local.definition.type)
(alias_declaration
(alias_initializer
.
(identifier) @local.definition.type))
(constructor
(this) @local.definition.method)
(destructor
(this) @local.definition.method)
(postblit
(this) @local.definition.method)
(aggregate_body
(function_declaration
(identifier) @local.definition.method))
(manifest_declarator
.
(identifier) @local.definition.constant)
(anonymous_enum_declaration
(enum_member
.
(identifier) @local.definition.constant))
(variable_declaration
(declarator
(identifier) @local.definition.var))
(aggregate_body
(variable_declaration
(declarator
(identifier) @local.definition.field)))
(function_declaration
(identifier) @local.definition.function)
|