Skip to content

Commit 6484a2e

Browse files
committed
generated files
1 parent fd36f96 commit 6484a2e

File tree

706 files changed

+81752
-77026
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

706 files changed

+81752
-77026
lines changed
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
//// Automatically generated by generate-swift-syntax
2+
//// Do not edit directly!
3+
//===----------------------------------------------------------------------===//
4+
//
5+
// This source file is part of the Swift.org open source project
6+
//
7+
// Copyright (c) 2014 - 2023 Apple Inc. and the Swift project authors
8+
// Licensed under Apache License v2.0 with Runtime Library Exception
9+
//
10+
// See https://swift.org/LICENSE.txt for license information
11+
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
12+
//
13+
//===----------------------------------------------------------------------===//
14+
15+
extension AccessorDeclSyntax {
16+
@available(*, deprecated, renamed: "unexpectedBetweenModifierAndAccessorSpecifier")
17+
public var unexpectedBetweenModifierAndAccessorKind: UnexpectedNodesSyntax? {
18+
get {
19+
return unexpectedBetweenModifierAndAccessorSpecifier
20+
}
21+
set {
22+
unexpectedBetweenModifierAndAccessorSpecifier = newValue
23+
}
24+
}
25+
26+
@available(*, deprecated, renamed: "accessorSpecifier")
27+
public var accessorKind: TokenSyntax {
28+
get {
29+
return accessorSpecifier
30+
}
31+
set {
32+
accessorSpecifier = newValue
33+
}
34+
}
35+
36+
@available(*, deprecated, renamed: "unexpectedBetweenAccessorSpecifierAndParameters")
37+
public var unexpectedBetweenAccessorKindAndParameter: UnexpectedNodesSyntax? {
38+
get {
39+
return unexpectedBetweenAccessorSpecifierAndParameters
40+
}
41+
set {
42+
unexpectedBetweenAccessorSpecifierAndParameters = newValue
43+
}
44+
}
45+
46+
@available(*, deprecated, renamed: "parameters")
47+
public var parameter: AccessorParametersSyntax? {
48+
get {
49+
return parameters
50+
}
51+
set {
52+
parameters = newValue
53+
}
54+
}
55+
56+
@available(*, deprecated, renamed: "unexpectedBetweenParametersAndEffectSpecifiers")
57+
public var unexpectedBetweenParameterAndEffectSpecifiers: UnexpectedNodesSyntax? {
58+
get {
59+
return unexpectedBetweenParametersAndEffectSpecifiers
60+
}
61+
set {
62+
unexpectedBetweenParametersAndEffectSpecifiers = newValue
63+
}
64+
}
65+
66+
@available(*, deprecated, renamed: "AccessorDeclSyntax(leadingTrivia:_:attributes:_:modifier:_:accessorSpecifier:_:parameters:_:effectSpecifiers:_:body:_:trailingTrivia:)")
67+
@_disfavoredOverload
68+
public init(
69+
leadingTrivia: Trivia? = nil,
70+
_ unexpectedBeforeAttributes: UnexpectedNodesSyntax? = nil,
71+
attributes: AttributeListSyntax = [],
72+
_ unexpectedBetweenAttributesAndModifier: UnexpectedNodesSyntax? = nil,
73+
modifier: DeclModifierSyntax? = nil,
74+
_ unexpectedBetweenModifierAndAccessorKind: UnexpectedNodesSyntax? = nil,
75+
accessorKind: TokenSyntax,
76+
_ unexpectedBetweenAccessorKindAndParameter: UnexpectedNodesSyntax? = nil,
77+
parameter: AccessorParametersSyntax? = nil,
78+
_ unexpectedBetweenParameterAndEffectSpecifiers: UnexpectedNodesSyntax? = nil,
79+
effectSpecifiers: AccessorEffectSpecifiersSyntax? = nil,
80+
_ unexpectedBetweenEffectSpecifiersAndBody: UnexpectedNodesSyntax? = nil,
81+
body: CodeBlockSyntax? = nil,
82+
_ unexpectedAfterBody: UnexpectedNodesSyntax? = nil,
83+
trailingTrivia: Trivia? = nil
84+
85+
) {
86+
self.init(
87+
leadingTrivia: leadingTrivia,
88+
unexpectedBeforeAttributes,
89+
attributes: attributes,
90+
unexpectedBetweenAttributesAndModifier,
91+
modifier: modifier,
92+
unexpectedBetweenModifierAndAccessorKind,
93+
accessorSpecifier: accessorKind,
94+
unexpectedBetweenAccessorKindAndParameter,
95+
parameters: parameter,
96+
unexpectedBetweenParameterAndEffectSpecifiers,
97+
effectSpecifiers: effectSpecifiers,
98+
unexpectedBetweenEffectSpecifiersAndBody,
99+
body: body,
100+
unexpectedAfterBody,
101+
trailingTrivia: trailingTrivia
102+
)
103+
}
104+
}
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
//// Automatically generated by generate-swift-syntax
2+
//// Do not edit directly!
3+
//===----------------------------------------------------------------------===//
4+
//
5+
// This source file is part of the Swift.org open source project
6+
//
7+
// Copyright (c) 2014 - 2023 Apple Inc. and the Swift project authors
8+
// Licensed under Apache License v2.0 with Runtime Library Exception
9+
//
10+
// See https://swift.org/LICENSE.txt for license information
11+
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
12+
//
13+
//===----------------------------------------------------------------------===//
14+
15+
extension ActorDeclSyntax {
16+
@available(*, deprecated, renamed: "unexpectedBetweenActorKeywordAndName")
17+
public var unexpectedBetweenActorKeywordAndIdentifier: UnexpectedNodesSyntax? {
18+
get {
19+
return unexpectedBetweenActorKeywordAndName
20+
}
21+
set {
22+
unexpectedBetweenActorKeywordAndName = newValue
23+
}
24+
}
25+
26+
@available(*, deprecated, renamed: "name")
27+
public var identifier: TokenSyntax {
28+
get {
29+
return name
30+
}
31+
set {
32+
name = newValue
33+
}
34+
}
35+
36+
@available(*, deprecated, renamed: "unexpectedBetweenNameAndGenericParameterClause")
37+
public var unexpectedBetweenIdentifierAndGenericParameterClause: UnexpectedNodesSyntax? {
38+
get {
39+
return unexpectedBetweenNameAndGenericParameterClause
40+
}
41+
set {
42+
unexpectedBetweenNameAndGenericParameterClause = newValue
43+
}
44+
}
45+
46+
@available(*, deprecated, renamed: "ActorDeclSyntax(leadingTrivia:_:attributes:_:modifiers:_:actorKeyword:_:name:_:genericParameterClause:_:inheritanceClause:_:genericWhereClause:_:memberBlock:_:trailingTrivia:)")
47+
@_disfavoredOverload
48+
public init(
49+
leadingTrivia: Trivia? = nil,
50+
_ unexpectedBeforeAttributes: UnexpectedNodesSyntax? = nil,
51+
attributes: AttributeListSyntax = [],
52+
_ unexpectedBetweenAttributesAndModifiers: UnexpectedNodesSyntax? = nil,
53+
modifiers: DeclModifierListSyntax = [],
54+
_ unexpectedBetweenModifiersAndActorKeyword: UnexpectedNodesSyntax? = nil,
55+
actorKeyword: TokenSyntax = .keyword(.actor),
56+
_ unexpectedBetweenActorKeywordAndIdentifier: UnexpectedNodesSyntax? = nil,
57+
identifier: TokenSyntax,
58+
_ unexpectedBetweenIdentifierAndGenericParameterClause: UnexpectedNodesSyntax? = nil,
59+
genericParameterClause: GenericParameterClauseSyntax? = nil,
60+
_ unexpectedBetweenGenericParameterClauseAndInheritanceClause: UnexpectedNodesSyntax? = nil,
61+
inheritanceClause: InheritanceClauseSyntax? = nil,
62+
_ unexpectedBetweenInheritanceClauseAndGenericWhereClause: UnexpectedNodesSyntax? = nil,
63+
genericWhereClause: GenericWhereClauseSyntax? = nil,
64+
_ unexpectedBetweenGenericWhereClauseAndMemberBlock: UnexpectedNodesSyntax? = nil,
65+
memberBlock: MemberBlockSyntax,
66+
_ unexpectedAfterMemberBlock: UnexpectedNodesSyntax? = nil,
67+
trailingTrivia: Trivia? = nil
68+
69+
) {
70+
self.init(
71+
leadingTrivia: leadingTrivia,
72+
unexpectedBeforeAttributes,
73+
attributes: attributes,
74+
unexpectedBetweenAttributesAndModifiers,
75+
modifiers: modifiers,
76+
unexpectedBetweenModifiersAndActorKeyword,
77+
actorKeyword: actorKeyword,
78+
unexpectedBetweenActorKeywordAndIdentifier,
79+
name: identifier,
80+
unexpectedBetweenIdentifierAndGenericParameterClause,
81+
genericParameterClause: genericParameterClause,
82+
unexpectedBetweenGenericParameterClauseAndInheritanceClause,
83+
inheritanceClause: inheritanceClause,
84+
unexpectedBetweenInheritanceClauseAndGenericWhereClause,
85+
genericWhereClause: genericWhereClause,
86+
unexpectedBetweenGenericWhereClauseAndMemberBlock,
87+
memberBlock: memberBlock,
88+
unexpectedAfterMemberBlock,
89+
trailingTrivia: trailingTrivia
90+
)
91+
}
92+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
//// Automatically generated by generate-swift-syntax
2+
//// Do not edit directly!
3+
//===----------------------------------------------------------------------===//
4+
//
5+
// This source file is part of the Swift.org open source project
6+
//
7+
// Copyright (c) 2014 - 2023 Apple Inc. and the Swift project authors
8+
// Licensed under Apache License v2.0 with Runtime Library Exception
9+
//
10+
// See https://swift.org/LICENSE.txt for license information
11+
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
12+
//
13+
//===----------------------------------------------------------------------===//
14+
15+
extension AvailabilityConditionSyntax {
16+
@available(*, deprecated, renamed: "unexpectedBetweenLeftParenAndAvailabilityArguments")
17+
public var unexpectedBetweenLeftParenAndAvailabilitySpec: UnexpectedNodesSyntax? {
18+
get {
19+
return unexpectedBetweenLeftParenAndAvailabilityArguments
20+
}
21+
set {
22+
unexpectedBetweenLeftParenAndAvailabilityArguments = newValue
23+
}
24+
}
25+
26+
@available(*, deprecated, renamed: "availabilityArguments")
27+
public var availabilitySpec: AvailabilityArgumentListSyntax {
28+
get {
29+
return availabilityArguments
30+
}
31+
set {
32+
availabilityArguments = newValue
33+
}
34+
}
35+
36+
@available(*, deprecated, renamed: "unexpectedBetweenAvailabilityArgumentsAndRightParen")
37+
public var unexpectedBetweenAvailabilitySpecAndRightParen: UnexpectedNodesSyntax? {
38+
get {
39+
return unexpectedBetweenAvailabilityArgumentsAndRightParen
40+
}
41+
set {
42+
unexpectedBetweenAvailabilityArgumentsAndRightParen = newValue
43+
}
44+
}
45+
46+
@available(*, deprecated, renamed: "AvailabilityConditionSyntax(leadingTrivia:_:availabilityKeyword:_:leftParen:_:availabilityArguments:_:rightParen:_:trailingTrivia:)")
47+
@_disfavoredOverload
48+
public init(
49+
leadingTrivia: Trivia? = nil,
50+
_ unexpectedBeforeAvailabilityKeyword: UnexpectedNodesSyntax? = nil,
51+
availabilityKeyword: TokenSyntax,
52+
_ unexpectedBetweenAvailabilityKeywordAndLeftParen: UnexpectedNodesSyntax? = nil,
53+
leftParen: TokenSyntax = .leftParenToken(),
54+
_ unexpectedBetweenLeftParenAndAvailabilitySpec: UnexpectedNodesSyntax? = nil,
55+
availabilitySpec: AvailabilityArgumentListSyntax,
56+
_ unexpectedBetweenAvailabilitySpecAndRightParen: UnexpectedNodesSyntax? = nil,
57+
rightParen: TokenSyntax = .rightParenToken(),
58+
_ unexpectedAfterRightParen: UnexpectedNodesSyntax? = nil,
59+
trailingTrivia: Trivia? = nil
60+
61+
) {
62+
self.init(
63+
leadingTrivia: leadingTrivia,
64+
unexpectedBeforeAvailabilityKeyword,
65+
availabilityKeyword: availabilityKeyword,
66+
unexpectedBetweenAvailabilityKeywordAndLeftParen,
67+
leftParen: leftParen,
68+
unexpectedBetweenLeftParenAndAvailabilitySpec,
69+
availabilityArguments: availabilitySpec,
70+
unexpectedBetweenAvailabilitySpecAndRightParen,
71+
rightParen: rightParen,
72+
unexpectedAfterRightParen,
73+
trailingTrivia: trailingTrivia
74+
)
75+
}
76+
}

0 commit comments

Comments
 (0)