15
15
import SwiftSyntax
16
16
17
17
extension AccessorDeclSyntax {
18
- @available ( * , deprecated, message: " Use an initializer with accessorKind argument(s). " )
18
+ @available ( * , deprecated, message: " Use an initializer with accessorSpecifier argument(s). " )
19
19
@_disfavoredOverload
20
20
/// A convenience initializer that allows initializing syntax collections using result builders
21
21
public init (
@@ -62,7 +62,7 @@ extension AccessorDeclSyntax {
62
62
}
63
63
64
64
extension ArrayExprSyntax {
65
- @available ( * , deprecated, message: " Use an initializer with leftSquareBracket, rightSquareBracket argument(s). " )
65
+ @available ( * , deprecated, message: " Use an initializer with leftSquare, rightSquare argument(s). " )
66
66
@_disfavoredOverload
67
67
/// A convenience initializer that allows initializing syntax collections using result builders
68
68
public init (
@@ -91,7 +91,7 @@ extension ArrayExprSyntax {
91
91
}
92
92
93
93
extension EnumDeclSyntax {
94
- @available ( * , deprecated, message: " Use an initializer with genericParameters argument(s). " )
94
+ @available ( * , deprecated, message: " Use an initializer with genericParameterClause argument(s). " )
95
95
@_disfavoredOverload
96
96
/// A convenience initializer that allows initializing syntax collections using result builders
97
97
public init (
@@ -140,7 +140,7 @@ extension EnumDeclSyntax {
140
140
}
141
141
142
142
extension ExpressionSegmentSyntax {
143
- @available ( * , deprecated, message: " Use an initializer with delimiter argument(s). " )
143
+ @available ( * , deprecated, message: " Use an initializer with rawStringDelimiter argument(s). " )
144
144
@_disfavoredOverload
145
145
/// A convenience initializer that allows initializing syntax collections using result builders
146
146
public init (
@@ -177,7 +177,7 @@ extension ExpressionSegmentSyntax {
177
177
}
178
178
179
179
extension GenericArgumentClauseSyntax {
180
- @available ( * , deprecated, message: " Use an initializer with leftAngleBracket, rightAngleBracket argument(s). " )
180
+ @available ( * , deprecated, message: " Use an initializer with leftAngle, rightAngle argument(s). " )
181
181
@_disfavoredOverload
182
182
/// A convenience initializer that allows initializing syntax collections using result builders
183
183
public init (
@@ -206,7 +206,7 @@ extension GenericArgumentClauseSyntax {
206
206
}
207
207
208
208
extension GenericParameterClauseSyntax {
209
- @available ( * , deprecated, message: " Use an initializer with leftAngleBracket, genericParameterList, rightAngleBracket argument(s). " )
209
+ @available ( * , deprecated, message: " Use an initializer with leftAngle, parameters, rightAngle argument(s). " )
210
210
@_disfavoredOverload
211
211
/// A convenience initializer that allows initializing syntax collections using result builders
212
212
public init (
@@ -239,7 +239,7 @@ extension GenericParameterClauseSyntax {
239
239
}
240
240
241
241
extension KeyPathSubscriptComponentSyntax {
242
- @available ( * , deprecated, message: " Use an initializer with leftBracket, rightBracket argument(s). " )
242
+ @available ( * , deprecated, message: " Use an initializer with leftSquare, rightSquare argument(s). " )
243
243
@_disfavoredOverload
244
244
/// A convenience initializer that allows initializing syntax collections using result builders
245
245
public init (
@@ -268,7 +268,7 @@ extension KeyPathSubscriptComponentSyntax {
268
268
}
269
269
270
270
extension MacroExpansionDeclSyntax {
271
- @available ( * , deprecated, message: " Use an initializer with poundToken, genericArguments argument(s). " )
271
+ @available ( * , deprecated, message: " Use an initializer with pound, genericArgumentClause argument(s). " )
272
272
@_disfavoredOverload
273
273
/// A convenience initializer that allows initializing syntax collections using result builders
274
274
public init (
@@ -325,7 +325,7 @@ extension MacroExpansionDeclSyntax {
325
325
}
326
326
327
327
extension MacroExpansionExprSyntax {
328
- @available ( * , deprecated, message: " Use an initializer with poundToken, genericArguments argument(s). " )
328
+ @available ( * , deprecated, message: " Use an initializer with pound, genericArgumentClause argument(s). " )
329
329
@_disfavoredOverload
330
330
/// A convenience initializer that allows initializing syntax collections using result builders
331
331
public init (
@@ -374,7 +374,7 @@ extension MacroExpansionExprSyntax {
374
374
}
375
375
376
376
extension SourceFileSyntax {
377
- @available ( * , deprecated, message: " Use an initializer with eOFToken argument(s). " )
377
+ @available ( * , deprecated, message: " Use an initializer with endOfFileToken argument(s). " )
378
378
@_disfavoredOverload
379
379
/// A convenience initializer that allows initializing syntax collections using result builders
380
380
public init (
@@ -399,7 +399,7 @@ extension SourceFileSyntax {
399
399
}
400
400
401
401
extension SubscriptExprSyntax {
402
- @available ( * , deprecated, message: " Use an initializer with leftBracket, rightBracket argument(s). " )
402
+ @available ( * , deprecated, message: " Use an initializer with leftSquare, rightSquare argument(s). " )
403
403
@_disfavoredOverload
404
404
/// A convenience initializer that allows initializing syntax collections using result builders
405
405
public init (
@@ -440,7 +440,7 @@ extension SubscriptExprSyntax {
440
440
}
441
441
442
442
extension TupleExprSyntax {
443
- @available ( * , deprecated, message: " Use an initializer with elementList argument(s). " )
443
+ @available ( * , deprecated, message: " Use an initializer with elements argument(s). " )
444
444
@_disfavoredOverload
445
445
/// A convenience initializer that allows initializing syntax collections using result builders
446
446
public init (
@@ -469,7 +469,7 @@ extension TupleExprSyntax {
469
469
}
470
470
471
471
extension VariableDeclSyntax {
472
- @available ( * , deprecated, message: " Use an initializer with bindingKeyword argument(s). " )
472
+ @available ( * , deprecated, message: " Use an initializer with bindingSpecifier argument(s). " )
473
473
@_disfavoredOverload
474
474
/// A convenience initializer that allows initializing syntax collections using result builders
475
475
public init (
0 commit comments