summaryrefslogtreecommitdiff
path: root/tests/examplefiles/kotlin/example.kt.output
blob: 0798964c5dd80e686956a9e88e6df554f7fc5d5b (plain)
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
'package'     Keyword
' '           Text.Whitespace
'addressbook' Name.Namespace
'\n\n'        Text.Whitespace

'class'       Keyword.Declaration
' '           Text.Whitespace
'Contact'     Name.Class
'('           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'name'        Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'String'      Keyword.Type
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'emails'      Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'List'        Name
'<'           Operator
'EmailAddress' Name
'>'           Operator
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'addresses'   Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'List'        Name
'<'           Operator
'PostalAddress' Name
'>'           Operator
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'phonenums'   Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'List'        Name
'<'           Operator
'PhoneNumber' Name
'>'           Operator
'\n'          Text.Whitespace

')'           Punctuation
'\n\n'        Text.Whitespace

'class'       Keyword.Declaration
' '           Text.Whitespace
'EmailAddress' Name.Class
'('           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'user'        Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'String'      Keyword.Type
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'host'        Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'String'      Keyword.Type
'\n'          Text.Whitespace

')'           Punctuation
'\n\n'        Text.Whitespace

'class'       Keyword.Declaration
' '           Text.Whitespace
'PostalAddress' Name.Class
'('           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'streetAddress' Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'String'      Keyword.Type
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'city'        Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'String'      Keyword.Type
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'zip'         Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'String'      Keyword.Type
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'state'       Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'USState?,'   Name
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'country'     Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Country'     Name
'\n'          Text.Whitespace

')'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'\n   '       Text.Whitespace
'assert'      Name
' '           Text.Whitespace
'{'           Punctuation
'('           Punctuation
'state'       Name
' '           Text.Whitespace
'='           Operator
'='           Operator
' '           Text.Whitespace
'null'        Keyword.Constant
')'           Punctuation
' '           Text.Whitespace
'xor'         Name
' '           Text.Whitespace
'('           Punctuation
'country'     Name
' '           Text.Whitespace
'='           Operator
'='           Operator
' '           Text.Whitespace
'Countries'   Name
'['           Operator
'"'           Literal.String
'US'          Literal.String
'"'           Literal.String
']'           Operator
')'           Punctuation
' '           Text.Whitespace
'}'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n\n'        Text.Whitespace

'class'       Keyword.Declaration
' '           Text.Whitespace
'PhoneNumber' Name.Class
'('           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'country'     Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Country'     Name
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'areaCode'    Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Int'         Keyword.Type
','           Punctuation
'\n  '        Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'number'      Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Long'        Keyword.Type
'\n'          Text.Whitespace

')'           Punctuation
'\n\n'        Text.Whitespace

'object'      Keyword.Declaration
' '           Text.Whitespace
'Countries'   Name.Class
' '           Text.Whitespace
'{'           Punctuation
'\n  '        Text.Whitespace
'fun'         Keyword.Declaration
' '           Text.Whitespace
'get'         Name.Function
'('           Punctuation
'id'          Name
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'CountryID'   Name
')'           Punctuation
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Country'     Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'countryTable' Name
'['           Operator
'id'          Name
']'           Operator
'\n  \n  '    Text.Whitespace
'private'     Keyword.Declaration
' '           Text.Whitespace
'var'         Keyword.Declaration
' '           Text.Whitespace
'table'       Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Map'         Name
'<'           Operator
'String'      Keyword.Type
','           Punctuation
' '           Text.Whitespace
'Country'     Name
'>'           Operator
'?'           Operator
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'null'        Keyword.Constant
'\n  '        Text.Whitespace
'private'     Keyword.Declaration
' '           Text.Whitespace
'val'         Keyword.Declaration
' '           Text.Whitespace
'countryTable' Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'Map'         Name
'<'           Operator
'String'      Keyword.Type
','           Punctuation
' '           Text.Whitespace
'Country'     Name
'>'           Operator
'\n    '      Text.Whitespace
'get'         Keyword
'('           Punctuation
')'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'\n      '    Text.Whitespace
'if'          Keyword
' '           Text.Whitespace
'('           Punctuation
'table'       Name
' '           Text.Whitespace
'='           Operator
'='           Operator
' '           Text.Whitespace
'null'        Keyword.Constant
')'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'\n        '  Text.Whitespace
'table'       Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'HashMap'     Name
'('           Punctuation
')'           Punctuation
'\n        '  Text.Whitespace
'for'         Keyword
' '           Text.Whitespace
'('           Punctuation
'line'        Name
' '           Text.Whitespace
'in'          Keyword
' '           Text.Whitespace
'TextFile'    Name
'('           Punctuation
'"'           Literal.String
'countries.txt' Literal.String
'"'           Literal.String
')'           Punctuation
'.'           Punctuation
'lines'       Name.Attribute
'('           Punctuation
'stripWhiteSpace' Name
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'true'        Keyword.Constant
')'           Punctuation
')'           Punctuation
' '           Text.Whitespace
'{'           Punctuation
'\n          ' Text.Whitespace
'table'       Name
'['           Operator
'line'        Name
']'           Operator
' '           Text.Whitespace
'='           Operator
' '           Text.Whitespace
'Country'     Name
'('           Punctuation
'line'        Name
')'           Punctuation
'\n        '  Text.Whitespace
'}'           Punctuation
'\n      '    Text.Whitespace
'}'           Punctuation
'\n      '    Text.Whitespace
'return'      Keyword
' '           Text.Whitespace
'table'       Name
'\n    '      Text.Whitespace
'}'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n\n'        Text.Whitespace

'class'       Keyword.Declaration
' '           Text.Whitespace
'Country'     Name.Class
'('           Punctuation
'val'         Keyword.Declaration
' '           Text.Whitespace
'name'        Name.Variable
' '           Text.Whitespace
':'           Punctuation
' '           Text.Whitespace
'String'      Keyword.Type
')'           Punctuation
'\n'          Text.Whitespace