Skip to content

Commit 2edf2be

Browse files
committed
Regenerate sources
1 parent 35af746 commit 2edf2be

24 files changed

+18
-3647
lines changed

CodeGeneration/Sources/SyntaxSupport/gyb_generated/ExprNodes.swift

-106
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,6 @@ public let EXPR_NODES: [Node] = [
2626
kind: "Expr")
2727
]),
2828

29-
Node(name: "PoundColumnExpr",
30-
nameForDiagnostics: nil,
31-
kind: "Expr",
32-
children: [
33-
Child(name: "PoundColumn",
34-
kind: "PoundColumnToken",
35-
tokenChoices: [
36-
"PoundColumn"
37-
])
38-
]),
39-
4029
Node(name: "TupleExprElementList",
4130
nameForDiagnostics: nil,
4231
kind: "SyntaxCollection",
@@ -229,72 +218,6 @@ public let EXPR_NODES: [Node] = [
229218
element: "Expr",
230219
elementName: "Expression"),
231220

232-
Node(name: "PoundLineExpr",
233-
nameForDiagnostics: nil,
234-
kind: "Expr",
235-
children: [
236-
Child(name: "PoundLine",
237-
kind: "PoundLineToken",
238-
tokenChoices: [
239-
"PoundLine"
240-
])
241-
]),
242-
243-
Node(name: "PoundFileExpr",
244-
nameForDiagnostics: nil,
245-
kind: "Expr",
246-
children: [
247-
Child(name: "PoundFile",
248-
kind: "PoundFileToken",
249-
tokenChoices: [
250-
"PoundFile"
251-
])
252-
]),
253-
254-
Node(name: "PoundFileIDExpr",
255-
nameForDiagnostics: nil,
256-
kind: "Expr",
257-
children: [
258-
Child(name: "PoundFileID",
259-
kind: "PoundFileIDToken",
260-
tokenChoices: [
261-
"PoundFileID"
262-
])
263-
]),
264-
265-
Node(name: "PoundFilePathExpr",
266-
nameForDiagnostics: nil,
267-
kind: "Expr",
268-
children: [
269-
Child(name: "PoundFilePath",
270-
kind: "PoundFilePathToken",
271-
tokenChoices: [
272-
"PoundFilePath"
273-
])
274-
]),
275-
276-
Node(name: "PoundFunctionExpr",
277-
nameForDiagnostics: nil,
278-
kind: "Expr",
279-
children: [
280-
Child(name: "PoundFunction",
281-
kind: "PoundFunctionToken",
282-
tokenChoices: [
283-
"PoundFunction"
284-
])
285-
]),
286-
287-
Node(name: "PoundDsohandleExpr",
288-
nameForDiagnostics: nil,
289-
kind: "Expr",
290-
children: [
291-
Child(name: "PoundDsohandle",
292-
kind: "PoundDsohandleToken",
293-
tokenChoices: [
294-
"PoundDsohandle"
295-
])
296-
]),
297-
298221
Node(name: "SymbolicReferenceExpr",
299222
nameForDiagnostics: nil,
300223
kind: "Expr",
@@ -1226,35 +1149,6 @@ public let EXPR_NODES: [Node] = [
12261149
])
12271150
]),
12281151

1229-
Node(name: "ObjectLiteralExpr",
1230-
nameForDiagnostics: "object literal",
1231-
kind: "Expr",
1232-
traits: [
1233-
"Parenthesized"
1234-
],
1235-
children: [
1236-
Child(name: "Identifier",
1237-
kind: "Token",
1238-
tokenChoices: [
1239-
"PoundColorLiteral",
1240-
"PoundFileLiteral",
1241-
"PoundImageLiteral"
1242-
]),
1243-
Child(name: "LeftParen",
1244-
kind: "LeftParenToken",
1245-
tokenChoices: [
1246-
"LeftParen"
1247-
]),
1248-
Child(name: "Arguments",
1249-
kind: "TupleExprElementList",
1250-
collectionElementName: "Argument"),
1251-
Child(name: "RightParen",
1252-
kind: "RightParenToken",
1253-
tokenChoices: [
1254-
"RightParen"
1255-
])
1256-
]),
1257-
12581152
Node(name: "YieldExprList",
12591153
nameForDiagnostics: "yield list",
12601154
kind: "SyntaxCollection",

CodeGeneration/Sources/SyntaxSupport/gyb_generated/TokenSpec.swift

-17
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,6 @@ public let SYNTAX_TOKENS: [TokenSpec] = [
254254
ExprKeywordSpec(name: "True", text: "true"),
255255
ExprKeywordSpec(name: "Try", text: "try", requiresTrailingSpace: true),
256256
ExprKeywordSpec(name: "Throws", text: "throws", requiresTrailingSpace: true),
257-
KeywordSpec(name: "__FILE__", text: "__FILE__", requiresTrailingSpace: true),
258-
KeywordSpec(name: "__LINE__", text: "__LINE__", requiresTrailingSpace: true),
259-
KeywordSpec(name: "__COLUMN__", text: "__COLUMN__", requiresTrailingSpace: true),
260-
KeywordSpec(name: "__FUNCTION__", text: "__FUNCTION__", requiresTrailingSpace: true),
261-
KeywordSpec(name: "__DSO_HANDLE__", text: "__DSO_HANDLE__", requiresTrailingSpace: true),
262257
PatternKeywordSpec(name: "Wildcard", text: "_", requiresTrailingSpace: true),
263258
PunctuatorSpec(name: "LeftParen", kind: "l_paren", text: "("),
264259
PunctuatorSpec(name: "RightParen", kind: "r_paren", text: ")"),
@@ -287,15 +282,6 @@ public let SYNTAX_TOKENS: [TokenSpec] = [
287282
PunctuatorSpec(name: "StringQuote", kind: "string_quote", text: "\"", classification: "StringLiteral"),
288283
PunctuatorSpec(name: "SingleQuote", kind: "single_quote", text: "\'", classification: "StringLiteral"),
289284
PunctuatorSpec(name: "MultilineStringQuote", kind: "multiline_string_quote", text: "\"\"\"", classification: "StringLiteral"),
290-
PoundKeywordSpec(name: "PoundKeyPath", kind: "pound_keyPath", text: "#keyPath"),
291-
PoundKeywordSpec(name: "PoundLine", kind: "pound_line", text: "#line"),
292-
PoundKeywordSpec(name: "PoundSelector", kind: "pound_selector", text: "#selector"),
293-
PoundKeywordSpec(name: "PoundFile", kind: "pound_file", text: "#file"),
294-
PoundKeywordSpec(name: "PoundFileID", kind: "pound_fileID", text: "#fileID"),
295-
PoundKeywordSpec(name: "PoundFilePath", kind: "pound_filePath", text: "#filePath"),
296-
PoundKeywordSpec(name: "PoundColumn", kind: "pound_column", text: "#column"),
297-
PoundKeywordSpec(name: "PoundFunction", kind: "pound_function", text: "#function"),
298-
PoundKeywordSpec(name: "PoundDsohandle", kind: "pound_dsohandle", text: "#dsohandle"),
299285
PoundKeywordSpec(name: "PoundAssert", kind: "pound_assert", text: "#assert"),
300286
PoundDirectiveKeywordSpec(name: "PoundSourceLocation", kind: "pound_sourceLocation", text: "#sourceLocation"),
301287
PoundDirectiveKeywordSpec(name: "PoundWarning", kind: "pound_warning", text: "#warning"),
@@ -306,9 +292,6 @@ public let SYNTAX_TOKENS: [TokenSpec] = [
306292
PoundConditionalDirectiveKeywordSpec(name: "PoundEndif", kind: "pound_endif", text: "#endif"),
307293
PoundConfigSpec(name: "PoundAvailable", kind: "pound_available", text: "#available"),
308294
PoundConfigSpec(name: "PoundUnavailable", kind: "pound_unavailable", text: "#unavailable"),
309-
PoundObjectLiteralSpec(name: "PoundFileLiteral", kind: "pound_fileLiteral", text: "#fileLiteral", nameForDiagnostics: "file reference", protocol: "ExpressibleByFileReferenceLiteral"),
310-
PoundObjectLiteralSpec(name: "PoundImageLiteral", kind: "pound_imageLiteral", text: "#imageLiteral", nameForDiagnostics: "image", protocol: "ExpressibleByImageLiteral"),
311-
PoundObjectLiteralSpec(name: "PoundColorLiteral", kind: "pound_colorLiteral", text: "#colorLiteral", nameForDiagnostics: "color", protocol: "ExpressibleByColorLiteral"),
312295
PoundConfigSpec(name: "PoundHasSymbol", kind: "pound__hasSymbol", text: "#_hasSymbol"),
313296
LiteralSpec(name: "IntegerLiteral", kind: "integer_literal", nameForDiagnostics: "integer literal", classification: "IntegerLiteral"),
314297
LiteralSpec(name: "FloatingLiteral", kind: "floating_literal", nameForDiagnostics: "floating literal", classification: "FloatingLiteral"),

Sources/IDEUtils/generated/SyntaxClassification.swift

-34
Original file line numberDiff line numberDiff line change
@@ -246,16 +246,6 @@ extension RawTokenKind {
246246
return .keyword
247247
case .throwsKeyword:
248248
return .keyword
249-
case .__file__Keyword:
250-
return .keyword
251-
case .__line__Keyword:
252-
return .keyword
253-
case .__column__Keyword:
254-
return .keyword
255-
case .__function__Keyword:
256-
return .keyword
257-
case .__dso_handle__Keyword:
258-
return .keyword
259249
case .wildcardKeyword:
260250
return .keyword
261251
case .leftParen:
@@ -312,24 +302,6 @@ extension RawTokenKind {
312302
return .stringLiteral
313303
case .multilineStringQuote:
314304
return .stringLiteral
315-
case .poundKeyPathKeyword:
316-
return .keyword
317-
case .poundLineKeyword:
318-
return .keyword
319-
case .poundSelectorKeyword:
320-
return .keyword
321-
case .poundFileKeyword:
322-
return .keyword
323-
case .poundFileIDKeyword:
324-
return .keyword
325-
case .poundFilePathKeyword:
326-
return .keyword
327-
case .poundColumnKeyword:
328-
return .keyword
329-
case .poundFunctionKeyword:
330-
return .keyword
331-
case .poundDsohandleKeyword:
332-
return .keyword
333305
case .poundAssertKeyword:
334306
return .keyword
335307
case .poundSourceLocationKeyword:
@@ -350,12 +322,6 @@ extension RawTokenKind {
350322
return .keyword
351323
case .poundUnavailableKeyword:
352324
return .keyword
353-
case .poundFileLiteralKeyword:
354-
return .objectLiteral
355-
case .poundImageLiteralKeyword:
356-
return .objectLiteral
357-
case .poundColorLiteralKeyword:
358-
return .objectLiteral
359325
case .poundHasSymbolKeyword:
360326
return .keyword
361327
case .integerLiteral:

Sources/SwiftBasicFormat/generated/BasicFormat.swift

-34
Original file line numberDiff line numberDiff line change
@@ -226,16 +226,6 @@ open class BasicFormat: SyntaxRewriter {
226226
return true
227227
case .throwsKeyword:
228228
return true
229-
case .__file__Keyword:
230-
return true
231-
case .__line__Keyword:
232-
return true
233-
case .__column__Keyword:
234-
return true
235-
case .__function__Keyword:
236-
return true
237-
case .__dso_handle__Keyword:
238-
return true
239229
case .wildcardKeyword:
240230
return true
241231
case .leftAngle:
@@ -250,24 +240,6 @@ open class BasicFormat: SyntaxRewriter {
250240
return true
251241
case .arrow:
252242
return true
253-
case .poundKeyPathKeyword:
254-
return true
255-
case .poundLineKeyword:
256-
return true
257-
case .poundSelectorKeyword:
258-
return true
259-
case .poundFileKeyword:
260-
return true
261-
case .poundFileIDKeyword:
262-
return true
263-
case .poundFilePathKeyword:
264-
return true
265-
case .poundColumnKeyword:
266-
return true
267-
case .poundFunctionKeyword:
268-
return true
269-
case .poundDsohandleKeyword:
270-
return true
271243
case .poundAssertKeyword:
272244
return true
273245
case .poundSourceLocationKeyword:
@@ -288,12 +260,6 @@ open class BasicFormat: SyntaxRewriter {
288260
return true
289261
case .poundUnavailableKeyword:
290262
return true
291-
case .poundFileLiteralKeyword:
292-
return true
293-
case .poundImageLiteralKeyword:
294-
return true
295-
case .poundColorLiteralKeyword:
296-
return true
297263
case .poundHasSymbolKeyword:
298264
return true
299265
case .spacedBinaryOperator:

Sources/SwiftSyntax/Documentation.docc/gyb_generated/SwiftSyntax.md

-8
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ allows Swift tools to parse, inspect, generate, and transform Swift source code.
108108
- <doc:SwiftSyntax/ExprSyntaxProtocol>
109109
- <doc:SwiftSyntax/UnknownExprSyntax>
110110
- <doc:SwiftSyntax/InOutExprSyntax>
111-
- <doc:SwiftSyntax/PoundColumnExprSyntax>
112111
- <doc:SwiftSyntax/TryExprSyntax>
113112
- <doc:SwiftSyntax/AwaitExprSyntax>
114113
- <doc:SwiftSyntax/MoveExprSyntax>
@@ -118,12 +117,6 @@ allows Swift tools to parse, inspect, generate, and transform Swift source code.
118117
- <doc:SwiftSyntax/DiscardAssignmentExprSyntax>
119118
- <doc:SwiftSyntax/AssignmentExprSyntax>
120119
- <doc:SwiftSyntax/SequenceExprSyntax>
121-
- <doc:SwiftSyntax/PoundLineExprSyntax>
122-
- <doc:SwiftSyntax/PoundFileExprSyntax>
123-
- <doc:SwiftSyntax/PoundFileIDExprSyntax>
124-
- <doc:SwiftSyntax/PoundFilePathExprSyntax>
125-
- <doc:SwiftSyntax/PoundFunctionExprSyntax>
126-
- <doc:SwiftSyntax/PoundDsohandleExprSyntax>
127120
- <doc:SwiftSyntax/SymbolicReferenceExprSyntax>
128121
- <doc:SwiftSyntax/PrefixOperatorExprSyntax>
129122
- <doc:SwiftSyntax/BinaryOperatorExprSyntax>
@@ -157,7 +150,6 @@ allows Swift tools to parse, inspect, generate, and transform Swift source code.
157150
- <doc:SwiftSyntax/MacroExpansionExprSyntax>
158151
- <doc:SwiftSyntax/PostfixIfConfigExprSyntax>
159152
- <doc:SwiftSyntax/EditorPlaceholderExprSyntax>
160-
- <doc:SwiftSyntax/ObjectLiteralExprSyntax>
161153

162154
### Types
163155

0 commit comments

Comments
 (0)