Skip to content

Commit 6cf1612

Browse files
aaaaaaa
1 parent 47b2a6d commit 6cf1612

File tree

3 files changed

+0
-21
lines changed

3 files changed

+0
-21
lines changed

Sources/SwiftSyntax/generated/syntaxNodes/SyntaxNodesC.swift

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4522,9 +4522,6 @@ public struct ConventionWitnessMethodAttributeArgumentsSyntax: SyntaxProtocol, S
45224522

45234523
/// - Parameters:
45244524
/// - leadingTrivia: Trivia to be prepended to the leading trivia of the node’s first token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
4525-
/// - witnessMethodLabel: The "witnessMethod" label.
4526-
/// - colon: The colon separating the "witnessMethod" label and the original protocol name.
4527-
/// - protocolName: The original protocol name.
45284525
/// - trailingTrivia: Trivia to be appended to the trailing trivia of the node’s last token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
45294526
public init(
45304527
leadingTrivia: Trivia? = nil,
@@ -4579,8 +4576,6 @@ public struct ConventionWitnessMethodAttributeArgumentsSyntax: SyntaxProtocol, S
45794576
}
45804577
}
45814578

4582-
/// The "witnessMethod" label.
4583-
///
45844579
/// ### Tokens
45854580
///
45864581
/// For syntax trees generated by the parser, this is guaranteed to be `witness_method`.
@@ -4602,8 +4597,6 @@ public struct ConventionWitnessMethodAttributeArgumentsSyntax: SyntaxProtocol, S
46024597
}
46034598
}
46044599

4605-
/// The colon separating the "witnessMethod" label and the original protocol name.
4606-
///
46074600
/// ### Tokens
46084601
///
46094602
/// For syntax trees generated by the parser, this is guaranteed to be `:`.
@@ -4625,8 +4618,6 @@ public struct ConventionWitnessMethodAttributeArgumentsSyntax: SyntaxProtocol, S
46254618
}
46264619
}
46274620

4628-
/// The original protocol name.
4629-
///
46304621
/// ### Tokens
46314622
///
46324623
/// For syntax trees generated by the parser, this is guaranteed to be `<identifier>`.

Sources/SwiftSyntax/generated/syntaxNodes/SyntaxNodesD.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2813,9 +2813,7 @@ public struct DifferentiableAttributeArgumentsSyntax: SyntaxProtocol, SyntaxHash
28132813

28142814
/// - Parameters:
28152815
/// - leadingTrivia: Trivia to be prepended to the leading trivia of the node’s first token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
2816-
/// - kindSpecifier: The differentiability kind, if it exists.
28172816
/// - kindSpecifierComma: The comma following the differentiability kind, if it exists.
2818-
/// - arguments: The differentiability arguments, if any exists.
28192817
/// - argumentsComma: The comma following the differentiability arguments clause, if it exists.
28202818
/// - genericWhereClause: A `where` clause that places additional constraints on generic parameters like `where T: Differentiable`.
28212819
/// - trailingTrivia: Trivia to be appended to the trailing trivia of the node’s last token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
@@ -2884,8 +2882,6 @@ public struct DifferentiableAttributeArgumentsSyntax: SyntaxProtocol, SyntaxHash
28842882
}
28852883
}
28862884

2887-
/// The differentiability kind, if it exists.
2888-
///
28892885
/// ### Tokens
28902886
///
28912887
/// For syntax trees generated by the parser, this is guaranteed to be one of the following kinds:
@@ -2933,7 +2929,6 @@ public struct DifferentiableAttributeArgumentsSyntax: SyntaxProtocol, SyntaxHash
29332929
}
29342930
}
29352931

2936-
/// The differentiability arguments, if any exists.
29372932
public var arguments: DifferentiabilityWithRespectToArgumentSyntax? {
29382933
get {
29392934
return Syntax(self).child(at: 5)?.cast(DifferentiabilityWithRespectToArgumentSyntax.self)

Sources/SwiftSyntax/generated/syntaxNodes/SyntaxNodesOP.swift

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ public struct ObjCSelectorPieceSyntax: SyntaxProtocol, SyntaxHashable, _LeafSynt
3636

3737
/// - Parameters:
3838
/// - leadingTrivia: Trivia to be prepended to the leading trivia of the node’s first token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
39-
/// - name: The identifier name for a nullary selection, if it exists.
40-
/// - colon: The colon separating the label and the value or a colon representing an unlabeled argument
4139
/// - trailingTrivia: Trivia to be appended to the trailing trivia of the node’s last token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
4240
public init(
4341
leadingTrivia: Trivia? = nil,
@@ -86,7 +84,6 @@ public struct ObjCSelectorPieceSyntax: SyntaxProtocol, SyntaxHashable, _LeafSynt
8684
}
8785
}
8886

89-
/// The identifier name for a nullary selection, if it exists.
9087
public var name: TokenSyntax? {
9188
get {
9289
return Syntax(self).child(at: 1)?.cast(TokenSyntax.self)
@@ -105,8 +102,6 @@ public struct ObjCSelectorPieceSyntax: SyntaxProtocol, SyntaxHashable, _LeafSynt
105102
}
106103
}
107104

108-
/// The colon separating the label and the value or a colon representing an unlabeled argument
109-
///
110105
/// ### Tokens
111106
///
112107
/// For syntax trees generated by the parser, this is guaranteed to be `:`.
@@ -2106,7 +2101,6 @@ public struct PlatformVersionItemSyntax: SyntaxProtocol, SyntaxHashable, _LeafSy
21062101

21072102
/// - Parameters:
21082103
/// - leadingTrivia: Trivia to be prepended to the leading trivia of the node’s first token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
2109-
/// - platformVersion: The platform/version pair, e.g. `iOS 10.1`
21102104
/// - trailingComma: A trailing comma if the argument is followed by another argument
21112105
/// - trailingTrivia: Trivia to be appended to the trailing trivia of the node’s last token. If the node is empty, there is no token to attach the trivia to and the parameter is ignored.
21122106
public init(
@@ -2156,7 +2150,6 @@ public struct PlatformVersionItemSyntax: SyntaxProtocol, SyntaxHashable, _LeafSy
21562150
}
21572151
}
21582152

2159-
/// The platform/version pair, e.g. `iOS 10.1`
21602153
public var platformVersion: PlatformVersionSyntax {
21612154
get {
21622155
return Syntax(self).child(at: 1)!.cast(PlatformVersionSyntax.self)

0 commit comments

Comments
 (0)