Unnamed repository; edit this file 'description' to name the repository.
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
; Keywords

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

[
  "namespace"
  "scalar"
  "interface"
  "alias"
] @keyword

[
  "model"
  "enum"
  "union"
] @keyword.storage.type

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

"extern" @keyword.storage.modifier

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

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

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

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

"?" @punctuation.special

; Identifiers

(identifier_or_member_expression) @type

; Imports

(import_statement
  (quoted_string_literal) @string.special.path)

; Namespaces

(using_statement
  module: (identifier_or_member_expression) @namespace)

(namespace_statement
  name: (identifier_or_member_expression) @namespace)

; Comments

[
  (single_line_comment)
] @comment.line

[
  (multi_line_comment)
] @comment.block

; Decorators

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

(augment_decorator_statement
  name: (identifier_or_member_expression) @attribute)

(decorator
  (decorator_arguments) @variable.parameter)

; Scalars

(scalar_statement
  name: (identifier) @type)

; Models

(model_statement
  name: (identifier) @type)

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

; Operations

(operation_statement
  name: (identifier) @function.method)

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

(template_parameter
  name: (identifier) @type.parameter)

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

; Interfaces

(interface_statement
  name: (identifier) @type)

(interface_statement
  (interface_body
    (interface_member
      (identifier) @function.method)))

; Enums

(enum_statement
  name: (identifier) @type.enum)

(enum_member
  name: (identifier) @constant)

; Unions

(union_statement
  name: (identifier) @type)

(union_variant
  name: (identifier) @type.enum.variant)

; Aliases

(alias_statement
  name: (identifier) @type)

; Built-in types

[
  (quoted_string_literal)
  (triple_quoted_string_literal)
] @string

(escape_sequence) @constant.character.escape

(boolean_literal) @constant.builtin.boolean

[
  (decimal_literal)
  (hex_integer_literal)
  (binary_integer_literal)
] @constant.numeric.integer

(builtin_type) @type.builtin