blob: 046d39790a83049f297a945aa543299570607b79 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
(comment) @comment @spell
"grammar" @keyword
[
"type"
"enum"
] @keyword.type
[
"pub"
"extern"
(mut)
] @keyword.modifier
[
"match"
"else"
] @keyword.conditional
[
"+"
"*"
"?"
; TODO: inaccessible node
; =>
"=>@L"
"=>@R"
"="
"&"
] @operator
(binding_symbol
name: (identifier) @variable.parameter)
(annotation
"#" @punctuation.special)
(grammar_parameter
(identifier) @variable.parameter)
(associated_type
(identifier) @type)
(parametrized_type
(path
(identifier) @type))
(bare_symbol
(macro
(macro_id) @type.definition))
(bare_symbol
(identifier) @type.definition)
(nonterminal_name
(macro_id) @type.definition)
(nonterminal_name
(identifier) @type.definition)
(nonterminal
(type_ref) @type.builtin)
[
"("
")"
"["
"]"
"}"
"{"
">"
"<"
] @punctuation.bracket
[
";"
":"
"::"
","
] @punctuation.delimiter
(lifetime
"'" @keyword.modifier)
(lifetime
(identifier) @attribute)
(lifetime
(identifier) @attribute.builtin
(#any-of? @attribute.builtin "static" "_"))
(string_literal) @string
(regex_literal) @string
(annotation
(id) @function.macro)
|