blob: 951192ea8ad07745ee79519d7227e86b6fabb303 (
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
|
[
"enum"
"extern"
"grammar"
"match"
"type"
"pub"
] @keyword
[
"match"
"else"
] @keyword.conditional
[
"+"
"*"
"?"
; TODO: inaccessible node
; =>
"=>@L"
"=>@R"
] @operator
(grammar_type_params
[
"<"
">"
] @punctuation.bracket)
(symbol
[
"<"
">"
] @punctuation.bracket)
(binding_symbol
[
"<"
">"
] @punctuation.bracket)
(binding_symbol
name: (identifier) @variable.parameter)
(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)
|