aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries/typespec/highlights.scm
blob: 68c67c0d14d475220b34c1d2e582fb7060593648 (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
(identifier_or_member_expression) @type

[
  "is"
  "extends"
  "valueof"
] @keyword.operator

[
  "namespace"
  "model"
  "scalar"
  "interface"
  "enum"
  "union"
  "alias"
] @keyword.type

[
  "op"
  "fn"
  "dec"
] @keyword.function

"extern" @keyword.modifier

[
  "import"
  "using"
] @keyword.import

[
  "("
  ")"
  "{"
  "}"
  "<"
  ">"
  "["
  "]"
] @punctuation.bracket

[
  ","
  ";"
  "."
  ":"
] @punctuation.delimiter

[
  "|"
  "&"
  "="
  "..."
] @operator

"?" @punctuation.special

[
  (single_line_comment)
  (multi_line_comment)
] @comment @spell

[
  (quoted_string_literal)
  (triple_quoted_string_literal)
] @string

(boolean_literal) @boolean

[
  (decimal_literal)
  (hex_integer_literal)
  (binary_integer_literal)
] @number

(escape_sequence) @string.escape

(builtin_type) @type.builtin

(decorator
  "@" @attribute
  name: (identifier_or_member_expression) @attribute)

(augment_decorator_statement
  name: (identifier_or_member_expression) @attribute)

(using_statement
  module: (identifier_or_member_expression) @module)

(namespace_statement
  name: (identifier_or_member_expression) @module)

(model_statement
  name: (identifier) @type)

(model_property
  name: (identifier) @variable.member)

(union_statement
  name: (identifier) @type)

(union_variant
  name: (identifier) @variable.member)

(scalar_statement
  name: (identifier) @type)

(interface_statement
  name: (identifier) @type)

(enum_statement
  name: (identifier) @type)

(enum_member
  name: (identifier) @constant)

(operation_statement
  name: (identifier) @function)

(template_parameter
  name: (identifier) @type)

(alias_statement
  name: (identifier) @type)

(decorator_declaration_statement
  name: (identifier) @attribute)

(function_parameter
  name: (identifier) @variable.parameter)

(operation_arguments
  (model_property
    name: (identifier) @variable.parameter))