-
Notifications
You must be signed in to change notification settings - Fork 441
/
Copy pathCommonNodes.swift
470 lines (439 loc) · 13.6 KB
/
CommonNodes.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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
public let COMMON_NODES: [Node] = [
Node(
kind: .codeBlockItemList,
base: .syntaxCollection,
nameForDiagnostics: nil,
elementChoices: [.codeBlockItem]
),
Node(
kind: .codeBlockItem,
base: .syntax,
nameForDiagnostics: nil,
documentation: "A CodeBlockItem is any Syntax node that appears on its own line inside a CodeBlock.",
parserFunction: "parseNonOptionalCodeBlockItem",
children: [
Child(
name: "item",
kind: .nodeChoices(choices: [
Child(
name: "decl",
kind: .node(kind: .decl)
),
Child(
name: "stmt",
kind: .node(kind: .stmt)
),
Child(
name: "expr",
kind: .node(kind: .expr)
),
]),
documentation: "The underlying node inside the code block."
),
Child(
name: "semicolon",
kind: .token(choices: [.token(.semicolon)]),
documentation: "If present, the trailing semicolon at the end of the item.",
isOptional: true
),
]
),
Node(
kind: .codeBlock,
base: .syntax,
nameForDiagnostics: "code block",
parserFunction: "parseCodeBlock",
traits: [
"Braced",
"WithStatements",
],
children: [
Child(
name: "leftBrace",
kind: .token(choices: [.token(.leftBrace)]),
documentation: "The brace introducing the code block."
),
Child(
name: "statements",
kind: .collection(kind: .codeBlockItemList, collectionElementName: "Statement"),
nameForDiagnostics: "statements"
),
Child(
name: "rightBrace",
kind: .token(choices: [.token(.rightBrace)]),
documentation: "The brace closing the code block."
),
]
),
Node(
kind: .throwsClause,
base: .syntax,
nameForDiagnostics: "throws clause",
children: [
Child(
name: "throwsSpecifier",
kind: .token(choices: [.keyword(.throws), .keyword(.rethrows)]),
documentation: "The `throws` keyword."
),
Child(
name: "leftParen",
kind: .token(choices: [.token(.leftParen)]),
documentation: "The '(' to open the thrown error type specification.",
isOptional: true
),
Child(
name: "type",
kind: .node(kind: .type),
nameForDiagnostics: "thrown type",
documentation: "The thrown error type.",
isOptional: true
),
Child(
name: "rightParen",
kind: .token(choices: [.token(.rightParen)]),
documentation: "The ')' to close the thrown error type specification.",
isOptional: true
),
]
),
Node(
kind: .accessorEffectSpecifiers,
base: .syntax,
nameForDiagnostics: "accessor specifiers",
traits: [
"EffectSpecifiers"
],
children: [
Child(
name: "asyncSpecifier",
kind: .token(choices: [.keyword(.async)]),
documentation: "The `async` keyword.",
isOptional: true
),
Child(
name: "throwsClause",
kind: .node(kind: .throwsClause),
documentation: "The clause specifying thrown errors",
isOptional: true
),
]
),
Node(
kind: .functionEffectSpecifiers,
base: .syntax,
nameForDiagnostics: "effect specifiers",
traits: [
"EffectSpecifiers"
],
children: [
Child(
name: "asyncSpecifier",
kind: .token(choices: [.keyword(.async), .keyword(.reasync)]),
documentation: "The `async` or `reasync` keyword.",
isOptional: true
),
Child(
name: "throwsClause",
kind: .node(kind: .throwsClause),
documentation: "The clause specifying thrown errors",
isOptional: true
),
]
),
Node(
kind: .deinitializerEffectSpecifiers,
base: .syntax,
nameForDiagnostics: "effect specifiers",
traits: [],
children: [
Child(
name: "asyncSpecifier",
kind: .token(choices: [.keyword(.async)]),
documentation: "The `async` keyword.",
isOptional: true
)
]
),
Node(
kind: .decl,
base: .syntax,
nameForDiagnostics: "declaration",
parserFunction: "parseDeclaration"
),
Node(
kind: .declGroupHeader,
base: .syntax,
nameForDiagnostics: "declaration group header",
parserFunction: "parseDeclarationGroupHeader",
traits: [
"WithAttributes",
"WithModifiers",
],
children: [
Child(
name: "attributes",
kind: .collection(kind: .attributeList, collectionElementName: "Attribute", defaultsToEmpty: true),
nameForDiagnostics: "attributes"
),
Child(
name: "modifiers",
kind: .collection(kind: .declModifierList, collectionElementName: "Modifier", defaultsToEmpty: true),
nameForDiagnostics: "modifiers",
documentation: "Modifiers like `public` that are attached to the actor declaration."
),
Child(
name: "introducer",
kind: .token(choices: [
.keyword(.actor), .keyword(.class), .keyword(.enum), .keyword(.extension), .keyword(.protocol),
.keyword(.struct),
]),
documentation: "The token that introduces this declaration, eg. `class` for a class declaration."
),
Child(name: "inheritanceClause", kind: .node(kind: .inheritanceClause), isOptional: true),
Child(
name: "genericWhereClause",
kind: .node(kind: .genericWhereClause),
documentation:
"A `where` clause that places additional constraints on generic parameters like `where Element: Hashable`.",
isOptional: true
),
]
),
Node(
kind: .expr,
base: .syntax,
nameForDiagnostics: "expression",
parserFunction: "parseExpression"
),
Node(
kind: .missingDeclHeader,
base: .declGroupHeader,
nameForDiagnostics: "declaration group header",
documentation:
"In case the source code is missing a declaration group header, this node stands in place of the missing header.",
traits: [
"MissingNode",
"WithAttributes",
"WithModifiers",
],
children: [
Child(
name: "attributes",
kind: .collection(kind: .attributeList, collectionElementName: "Attribute", defaultsToEmpty: true),
documentation:
"If there were standalone attributes without a declaration to attach them to, the ``MissingDeclSyntax`` will contain these."
),
Child(
name: "modifiers",
kind: .collection(kind: .declModifierList, collectionElementName: "Modifier", defaultsToEmpty: true),
documentation:
"If there were standalone modifiers without a declaration to attach them to, the ``MissingDeclSyntax`` will contain these."
),
Child(
name: "placeholder",
kind: .token(choices: [.token(.identifier)], requiresLeadingSpace: false, requiresTrailingSpace: false),
documentation: """
A placeholder, i.e. `<#decl#>`, that can be inserted into the source code to represent the missing declaration.
This token should always have `presence = .missing`.
"""
),
Child(name: "inheritanceClause", kind: .node(kind: .inheritanceClause), isOptional: true),
Child(
name: "genericWhereClause",
kind: .node(kind: .genericWhereClause),
documentation:
"A `where` clause that places additional constraints on generic parameters like `where Element: Hashable`.",
isOptional: true
),
]
),
Node(
kind: .missingDecl,
base: .decl,
nameForDiagnostics: "declaration",
documentation:
"In case the source code is missing a declaration, this node stands in place of the missing declaration.",
traits: [
"MissingNode",
"WithAttributes",
"WithModifiers",
],
children: [
Child(
name: "attributes",
kind: .collection(kind: .attributeList, collectionElementName: "Attribute", defaultsToEmpty: true),
documentation:
"If there were standalone attributes without a declaration to attach them to, the ``MissingDeclSyntax`` will contain these."
),
Child(
name: "modifiers",
kind: .collection(kind: .declModifierList, collectionElementName: "Modifier", defaultsToEmpty: true),
documentation:
"If there were standalone modifiers without a declaration to attach them to, the ``MissingDeclSyntax`` will contain these."
),
Child(
name: "placeholder",
kind: .token(choices: [.token(.identifier)], requiresLeadingSpace: false, requiresTrailingSpace: false),
documentation: """
A placeholder, i.e. `<#decl#>`, that can be inserted into the source code to represent the missing declaration.
This token should always have `presence = .missing`.
"""
),
]
),
Node(
kind: .missingExpr,
base: .expr,
nameForDiagnostics: "expression",
documentation:
"In case the source code is missing an expression, this node stands in place of the missing expression.",
traits: [
"MissingNode"
],
children: [
Child(
name: "placeholder",
kind: .token(choices: [.token(.identifier)], requiresLeadingSpace: false, requiresTrailingSpace: false),
documentation: """
A placeholder, i.e. `<#expression#>`, that can be inserted into the source code to represent the missing expression.
This token should always have `presence = .missing`.
"""
)
]
),
Node(
kind: .missingPattern,
base: .pattern,
nameForDiagnostics: "pattern",
documentation: "In case the source code is missing a pattern, this node stands in place of the missing pattern.",
traits: [
"MissingNode"
],
children: [
Child(
name: "placeholder",
kind: .token(choices: [.token(.identifier)], requiresLeadingSpace: false, requiresTrailingSpace: false),
documentation: """
A placeholder, i.e. `<#pattern#>`, that can be inserted into the source code to represent the missing pattern.
This token should always have `presence = .missing`.
"""
)
]
),
Node(
kind: .missingStmt,
base: .stmt,
nameForDiagnostics: "statement",
documentation:
"In case the source code is missing a statement, this node stands in place of the missing statement.",
traits: [
"MissingNode"
],
children: [
Child(
name: "placeholder",
kind: .token(choices: [.token(.identifier)], requiresLeadingSpace: false, requiresTrailingSpace: false),
documentation: """
A placeholder, i.e. `<#statement#>`, that can be inserted into the source code to represent the missing pattern.
This token should always have `presence = .missing`.
"""
)
]
),
Node(
kind: .missing,
base: .syntax,
nameForDiagnostics: nil,
documentation: "In case the source code is missing a syntax node, this node stands in place of the missing node.",
traits: [
"MissingNode"
],
children: [
Child(
name: "placeholder",
kind: .token(choices: [.token(.identifier)], requiresLeadingSpace: false, requiresTrailingSpace: false),
documentation: """
A placeholder, i.e. `<#syntax#>`, that can be inserted into the source code to represent the missing pattern.
This token should always have `presence = .missing`
"""
)
]
),
Node(
kind: .missingType,
base: .type,
nameForDiagnostics: "type",
documentation: "In case the source code is missing a type, this node stands in place of the missing type.",
traits: [
"MissingNode"
],
children: [
Child(
name: "placeholder",
kind: .token(choices: [.token(.identifier)], requiresLeadingSpace: false, requiresTrailingSpace: false),
documentation: """
A placeholder, i.e. `<#type#>`, that can be inserted into the source code to represent the missing type.
This token should always have `presence = .missing`.
"""
)
]
),
Node(
kind: .pattern,
base: .syntax,
nameForDiagnostics: "pattern",
parserFunction: "parsePattern"
),
Node(
kind: .stmt,
base: .syntax,
nameForDiagnostics: "statement",
parserFunction: "parseStatement"
),
Node(
kind: .typeEffectSpecifiers,
base: .syntax,
nameForDiagnostics: "effect specifiers",
traits: [
"EffectSpecifiers"
],
children: [
Child(
name: "asyncSpecifier",
kind: .token(choices: [.keyword(.async)]),
isOptional: true
),
Child(
name: "throwsClause",
kind: .node(kind: .throwsClause),
documentation: "The clause specifying thrown errors",
isOptional: true
),
]
),
Node(
kind: .type,
base: .syntax,
nameForDiagnostics: "type",
parserFunction: "parseType"
),
Node(
kind: .unexpectedNodes,
base: .syntaxCollection,
nameForDiagnostics: nil,
documentation:
"A collection of syntax nodes that occurred in the source code but could not be used to form a valid syntax tree.",
elementChoices: [.syntax]
),
]