-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsyntax_test.swift
257 lines (227 loc) · 4.86 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
// SYNTAX TEST "Packages/Decent-Swift-Syntax/Swift.sublime-syntax"
// comment
// ^ comment.line
// <- punctuation.definition.comment
// MARK: testing!
// ^ comment.line
// ^ punctuation.definition.comment
// ^ meta.toc-list
/* comment */
// ^comment.block
/* 000 */
// ^comment.block
// ^ comment - constant
000 /* "string" */
// <- -comment
// ^comment.block
// ^-string
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
// ^^^^^^^ constant.numeric.float
// ^ source.swift
100
// <- constant.numeric
// <- constant.numeric.decimal
1_000_000
// ^ constant.numeric.decimal
0xDEADBEEF
// <- constant.numeric.hex
// ^ constant.numeric.hex
0xGGGGG
// ^ -constant.numeric.hex
0o12345670
// <- constant.numeric.octal
// ^ constant.numeric.octal
0o8888
// ^ -constant.numeric.octal
0b01010110101
// <- constant.numeric.binary
// ^ constant.numeric.binary
0b22222
// ^ -constant.numeric.binary
word123
// ^ -constant.numeric
if { /**/ }
// <- keyword.control
where { /**/ }
// <- keyword.control
#if FOO
// <- punctuation.definition.preprocessor
#endif
// ^ source.swift punctuation.definition.preprocessor meta.preprocessor.swift
if a || b
// <- keyword
// ^ keyword.operator
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 Foo1 { case value }
// <- keyword.entity
// ^ support.class
// ^ entity.name.type
enum Foo2 : String { case value }
// <- keyword.entity
// ^ support.class
// ^ entity.name.type
// ^ support.class
enum Foo3 : String {
case value
// ^ keyword.control
}
if foo {}
// <- keyword.control
else {}
// <- keyword.control
for {}
// <- keyword.control
while true {}
// <- keyword.control
// ^ constant
switch foo { case .bar: }
// <- keyword.control
// ^ keyword.control
break
// <- keyword.control
return
// <- keyword.control
case 0..0
// <- keyword.control
// ^ constant.numeric
// ^ keyword.operator
// ^ constant.numeric
continue
// <- keyword.control
default
// <- keyword.control
enum Foo4
// <- keyword.entity
// ^ support.class
enum Foo5 : Bar {}
// <- keyword.entity
// ^ support.class
// ^ support.class
enum Foo6 { indirect case foo(Foo6) }
// <- keyword.entity
// ^ support.class
// ^ storage.modifier
// ^ keyword.control
// ^ support.class
struct Foo7
// <- keyword.entity
// ^ support.class
struct Foo8 : Bar
// ^ -invalid
// ^ -invalid
// ^ support.class
class Foo9
// <- keyword.entity
// ^ support.class
class Foo10 : Bar {}
// <- keyword.entity
// ^ support.class
// ^ support.class
protocol Foo11
// <- keyword.entity
// ^ support.class
protocol Foo12 : Bar {}
// <- keyword.entity
// ^ support.class
// ^ support.class
extension Foo13
// <- keyword.entity
// ^ support.class
extension Foo14 : Bar
// <- keyword.entity
// ^ support.class
// ^ keyword.operator
// ^ support.class
func foo()
// ^ variable.function
class func foo()
// <- meta.function
// <- storage.type.function
// ^ storage.type.function
func foo() { foo }
// ^ variable.function
// ^ meta.function
func foo(abc, def: String) { foo }
// ^ variable.function
// ^ meta.function
// ^ variable.parameter
func foo(abc: inout String) { foo }
// ^ variable.function
// ^ variable.parameter
// ^ storage.modifier
"foo"
// <- string
// <- string.quoted
"foo\"" foo
// <- string
// ^ constant.character.escape
// ^ constant.character.escape
// ^ string
// ^ -string
".foo"
// <- string
//^ string
// ^ string
"foo \(bar + (foo * bar))"
// <- string
// ^ punctuation.section
// ^ punctuation.section
// ^ -string
// ^ -punctuation.section
"""f"oo"""
// <- string.quoted.multiline
// ^ string.quoted
"""
f"oo\("bar")
// <- string
// <- string.quoted.multiline
// ^ punctuation.section.embedded
// ^ string.quoted.double
// ^ punctuation.section.embedded
"""
.bar
// <- constant.language.enum
#"te"st"#
// <- string
// <- string.quoted.raw
// ^ string.quoted
##"te"#st"##
// <- string
// <- string.quoted.raw
// ^ string.quoted
a = (.foo(.bar))
// ^ constant.language.enum
// ^ constant.language.enum
.foo + .bar
// <- constant.language.enum
// ^ -constant.language.enum
// ^ constant.language.enum
a.foo + a?.bar()
// <- -constant.language.enum
//^ -constant.language.enum
// ^ -constant.language.enum