forked from colinta/decent-swift-syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
syntax_test.swift
366 lines (323 loc) · 8.06 KB
/
syntax_test.swift
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
// SYNTAX TEST "Packages/Swift-for-f-ing-sublime/Swift.sublime-syntax"
// comment
// ^^^^^^^ comment.line
// <- punctuation.definition.comment
// MARK: testing!
// ^^^^^^^^^^^^^^ comment.line
// ^^^^^ punctuation.definition.comment
// ^^^^^^^^ meta.toc-list
/* comment */
// ^^^^^^^^^^ comment.block
a /* aa */ a
// ^^ punctuation.definition.comment
// ^^ -punctuation.definition.comment
// ^^ punctuation.definition.comment
// ^ -punctuation.definition.comment
/* 000 */
//^^^^^^^ comment.block
// ^^^ -constant
000 /* "string" */
// <- -comment
// ^^^^^^^^^^^^^^ comment.block
// ^^^^^^^^ -string
a /* /* */ */ + b
//<- -comment.block
// ^^^^^^^^^^^ comment.block
// ^^ punctuation.definition.comment
// ^^ punctuation.definition.comment
// ^^ punctuation.definition.comment
// ^^ punctuation.definition.comment
// ^^^ -comment.block
true
// <- constant.language
// <- constant.language.true
false
// <- constant.language
// <- constant.language.false
nil
// <- constant.language
// <- constant.language.nil
1.1 100.001
// <- constant.numeric
// <- constant.numeric.float
// ^^^^^^^ constant.numeric
100
// <- constant.numeric
// <- constant.numeric.decimal
1_000_000
// <- constant.numeric.decimal
//^^^^^^^ constant.numeric.decimal
0xDEADBEEF
// <- constant.numeric.hexadecimal
//^^^^^^^^ constant.numeric.hexadecimal
0xGGGGG
//^^^^^ invalid - constant.numeric.hexadecimal
0o12345670
// <- constant.numeric.octal
//^^^^^^^^ constant.numeric.octal
0o8888
//^^^^ invalid - constant.numeric.octal
0b01010110101
// <- constant.numeric.binary
//^^^^^^^^^^^ constant.numeric.binary
0b22222
//^^^^^ invalid - constant.numeric.binary
foo! + bar!.baz
//^^ variable.other.force-unwrap
// ^^^^ variable.other.force-unwrap
var foo: = 0
// ^ invalid
var foo: int.foo = bar
// <- keyword.variable
// ^^^ variable.other
// ^^^ support.class
// ^ keyword.operator
// ^^^ support.class
var foo: int.foo = bar
// ^ -invalid
let foo = 0
// <- keyword.variable
// ^^^ variable.other
foo + (a?.bar ?? 0)
//^ variable.other
// ^^ variable.other.optional
// ^^ keyword.operator.nil-coalesce
let (a: Int, b) = (1, 2)
// ^^^^^^^^^^^ support.tuple
// ^ variable.other
// ^^^ support.class
// ^ variable.other
__FILE__
// ^^^^^ invalid.deprecated
#file
// <- constant.language
// ^^ constant.language
#if FOO
// <- punctuation.definition.preprocessor
// ^^^ source.swift
#endif
//^^^ meta.preprocessor.c
if a || b {}
// <- keyword
// ^^ keyword.operator
true ? 1 : 2
// ^ keyword.operator.ternary
// ^ keyword.operator.ternary
true ?? 1 :: 2
// ^^ -keyword.operator.ternary
// ^^ -keyword.operator.ternary
public func foo
// <- storage.modifier
// ^ storage.type
// ^ storage.type.function
// ^ variable
// ^ entity.name.function
self
// <- keyword.variable
super
// <- keyword.variable
Color
// <- support.class
UIColor
// <- support.class
enum Foo { case Value }
// <- storage.type
// <- storage.type.enum
// ^^^ entity.name.type
enum Foo : String { case Value }
// ^ punctuation.definition.block
// ^ punctuation.definition.block
// ^^^^^^^^^^^^^^ meta.class
class Foo:String{ let var }
// <- storage.type
// <- storage.type.class
// ^^^ entity.name.type
// ^^^^^^ support.class
class Foo:String{ let var }
// ^^^^^^^^^^^ meta.class
// ^ punctuation.definition.block
// ^ punctuation.definition.block
class Foo:String,Proto{ let var }
// <- storage.type
// <- storage.type.class
// ^ keyword.operator.type
// ^^^^^^ support.class
// ^ keyword.operator
// ^^^^^ support.class
enum Foo : String {
case Value
// ^ keyword.control
}
if foo {}
// <- keyword.control
if { /**/ }
// ^ punctuation.definition.control.begin
// ^ punctuation.definition.control.end
else {}
// <- keyword.control
guard {}
// <- keyword.control
try {}
// <- keyword.control
catch {}
// <- keyword.control
for i in 0..0 {}
// <- keyword.control
while true {}
// <- keyword.control
switch foo { case .Bar: }
// <- keyword.control
// ^^^^ keyword.control
where
// <- invalid
break
// <- keyword.control
return
// <- keyword.control
case 0..0
// <- keyword.control
// ^ constant.numeric
// ^^ keyword.operator
// ^ constant.numeric
continue
// <- keyword.control
default
// <- keyword.control
a .+. b
//^^^ keyword.operator
a +.. b
//^^^ invalid keyword.operator
enum Foo {}
// <- storage.type.enum
// ^^^ entity.name.type
// ^^ punctuation.definition.block
// ^^ meta.class
enum Foo : Bar {}
// <- storage.type.enum
// ^^^ entity.name.type
// ^^^ support.class
struct Foo invalid {}
// <- storage.type.struct
// ^^^ entity.name.type
// ^^^^^^^ invalid
// ^^ meta.class
class Foo {}
// <- storage.type.class
// ^^^ entity.name.type
class Foo : Bar {}
// <- storage.type.class
// ^^^ entity.name.type
// ^ keyword.operator
// ^^^ support.class
protocol Foo {}
// <- storage.type.protocol
// ^^^ entity.name.type
// ^^ punctuation.definition.block
// ^^ meta.class
protocol Foo : Bar {}
// <- storage.type.protocol
// ^^^ entity.name.type
// ^ keyword.operator
// ^^^ support.class
extension Foo {}
// <- storage.type.extension
// ^^^ entity.name.type
extension Foo
// ^^^ entity.name.type
{}
// <- meta.class
extension Foo: Bar {}
// <- storage.type.extension
// ^^^ entity.name.type
// ^ keyword.operator
// ^^^ support.class
protocol Bla {
func foo()
// ^^^^^^^^ meta.function
// ^^^^ storage.type.function
optional func foo()
// ^^^^^^^^^^^^^^^^^ meta.function
// ^^^^^^^^^^^^^ storage.type.function
}
func foo()
// <- meta.function
func foo() {}
// <- meta.function
// ^^^ variable.function
// ^^ meta.function
class func foo() {}
// <- meta.function
// <- storage.type.function
// ^ storage.type.function
func foo() { foo }
// ^^^ variable.function
// ^^^^^^^ meta.function
func foo(a, b: String) {
// ^ variable.function
// ^ invalid
// ^ variable.parameter
// ^^^^^^ support.class
// ^ meta.function
let foo = bar
// ^^^^^^^^^^^^^ meta.function
}
"foo"
// <- string
// <- string.quoted
"foo\"\e" foo
// <- string
// ^^ constant.character.escape
// ^^ -constant.character.escape
// ^ string
// ^ -string
"\u{24}"
//<- constant.character.escape.unicode
//^^^^^ constant.character.escape.unicode
"\u{1F496}"
//<- constant.character.escape.unicode
//^^^^^^^^ constant.character.escape.unicode
"foo \(bar + (foo * bar))"
// <- string
// ^ punctuation.section
// ^ punctuation.section
// ^ -string
// ^ -punctuation.section
".Foo"
// <- string.quoted punctuation.definition.string.begin
// ^ string.quoted
// ^ punctuation.definition.string.end
a = (.Foo(bar))
// ^^^ constant.language.enum
// ^^^^^^^^^^^ meta.group
// ^^^ - constant.language.enum
// ^ punctuation.definition.group.begin
// ^ punctuation.definition.group.end
.Foo .Bar
// <- - meta.group
// <- constant.language.enum
// ^^^ constant.language.enum
Module.Type.Other
// <- support.class
// ^ keyword.operator
// ^^^^ support.class
// ^ keyword.operator
// ^^^^^ support.class
Module.Type + a?.bar()
// <- -constant.language.enum
// ^ -constant.language.enum
// ^ -constant.language.enum
[1, 2, 3]
// <- meta.array-or-dictionary
[ "a": true, "b": 2, "c": 3 ]
// <- meta.array-or-dictionary
//^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.array-or-dictionary
// <- punctuation.definition.array.begin
// ^ punctuation.definition.array.end
[ "a": true ? a : b, "b": 2, "c": 3 ]
// ^ keyword.operator.dictionary-key
// ^ keyword.operator.ternary
let foo = $0
// ^^ invalid
let block = { (a) in $0 }
// ^^^^^^^^^^^^^ meta.closure
// ^^ variable.placeholder