aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries/wing/highlights.scm
blob: 31e914f073566eb14831c8e74de22c2c7f891db3 (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
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
178
179
(identifier) @variable

(reference_identifier) @variable

(member_identifier) @variable.member

; Classes
(custom_type) @type

(class_field
  name: (identifier) @property)

(struct_field
  name: (identifier) @property)

(class_definition
  name: (identifier) @type)

(struct_definition
  name: (identifier) @type)

(interface_definition
  name: (identifier) @type)

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

(json_literal_member
  (identifier) @property)

; Functions
(keyword_argument_key) @variable.parameter

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

(variadic) @variable.parameter.builtin

(call
  caller: (reference
    (nested_identifier
      property: (member_identifier) @function.method.call)))

(call
  caller: (reference
    (reference_identifier) @function.method.call))

; Primitives
(number) @number

(duration) @constant

(string) @string

(bool) @boolean

[
  (builtin_type)
  "MutSet"
  "MutMap"
  "MutArray"
  "Json"
  "Set"
  "Map"
  "Array"
  "MutJson"
] @type.builtin

(json_container_type) @type.builtin

; Special
(comment) @comment @spell

[
  "-"
  "-="
  "+"
  "+="
  "*"
  "**"
  "/"
  "%"
  "<"
  "<="
  "="
  "=="
  "!"
  "!="
  ">"
  ">="
  "&&"
  "??"
  "||"
  "?"
] @operator

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

(mutable_container_type
  [
    "<"
    ">"
  ] @punctuation.bracket)

(immutable_container_type
  [
    "<"
    ">"
  ] @punctuation.bracket)

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

[
  "as"
  "let"
  "new"
  (phase_specifier)
  "impl"
  "test"
] @keyword

"bring" @keyword.import

[
  "class"
  "struct"
  "interface"
] @keyword.type

[
  "for"
  "in"
] @keyword.repeat

[
  "if"
  "else"
] @keyword.conditional

[
  "pub"
  "protected"
  "internal"
  "extern"
  (static)
] @keyword.modifier

"return" @keyword.return

(import_statement
  module_name: (identifier) @module)

(import_statement
  alias: (identifier) @module)

(call
  (reference
    (nested_identifier
      object: (reference) @_ref
      property: (member_identifier) @_ident))
  (argument_list
    (positional_argument
      (string) @string.regexp))
  (#eq? @_ref "regex")
  (#eq? @_ident "compile")
  (#offset! @string.regexp 0 1 0 -1))