Skip to content

Commit 6aada64

Browse files
committed
Re-generate sources
1 parent 1d36fc2 commit 6aada64

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Sources/SwiftSyntax/generated/syntaxNodes/SyntaxDeclNodes.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3248,7 +3248,7 @@ public struct ImportDeclSyntax: DeclSyntaxProtocol, SyntaxHashable {
32483248
/// - attributes: Attributes attached to the import declaration, for example `@testable`.
32493249
/// - modifiers: Modifiers attached to the import declaration. Currently, no modifiers are supported by Swift.
32503250
/// - importKeyword: The `import` keyword for this declaration.
3251-
/// - importKind: The kind of declaration being imported. For example, a struct can be imported from a specific module.
3251+
/// - importKindSpecifier: The kind of declaration being imported. For example, a struct can be imported from a specific module.
32523252
/// - path: The path to the module, submodule or symbol being imported.
32533253
/// - 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.
32543254
public init(
@@ -4865,7 +4865,7 @@ public struct OperatorDeclSyntax: DeclSyntaxProtocol, SyntaxHashable {
48654865

48664866
/// - Parameters:
48674867
/// - 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.
4868-
/// - fixity: The fixity applied to the 'operator' declaration.
4868+
/// - fixitySpecifier: The fixity applied to the 'operator' declaration.
48694869
/// - operatorPrecedenceAndTypes: Optionally specify a precedence group and designated types.
48704870
/// - 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.
48714871
public init(

Sources/SwiftSyntax/generated/syntaxNodes/SyntaxNodes.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6599,7 +6599,7 @@ public struct DerivativeRegistrationAttributeArgumentsSyntax: SyntaxProtocol, Sy
65996599
/// - colon: The colon separating the "of" label and the original declaration name.
66006600
/// - originalDeclName: The referenced original declaration name.
66016601
/// - period: The period separating the original declaration name and the accessor name.
6602-
/// - accessorKind: The accessor name.
6602+
/// - accessorSpecifier: The accessor name.
66036603
/// - 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.
66046604
public init(
66056605
leadingTrivia: Trivia? = nil,
@@ -7662,8 +7662,8 @@ public struct DifferentiableAttributeArgumentsSyntax: SyntaxProtocol, SyntaxHash
76627662

76637663
/// - Parameters:
76647664
/// - 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.
7665-
/// - diffKindComma: The comma following the differentiability kind, if it exists.
7666-
/// - diffParamsComma: The comma following the differentiability parameters clause, if it exists.
7665+
/// - kindSpecifierComma: The comma following the differentiability kind, if it exists.
7666+
/// - parametersComma: The comma following the differentiability parameters clause, if it exists.
76677667
/// - 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.
76687668
public init(
76697669
leadingTrivia: Trivia? = nil,
@@ -15315,7 +15315,7 @@ public struct PrecedenceGroupAssignmentSyntax: SyntaxProtocol, SyntaxHashable {
1531515315

1531615316
/// - Parameters:
1531715317
/// - 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.
15318-
/// - flag: When true, an operator in the corresponding precedence group uses the same grouping rules during optional chaining as the assignment operators from the standard library. Otherwise, operators in the precedence group follows the same optional chaining rules as operators that don't perform assignment.
15318+
/// - value: When true, an operator in the corresponding precedence group uses the same grouping rules during optional chaining as the assignment operators from the standard library. Otherwise, operators in the precedence group follows the same optional chaining rules as operators that don't perform assignment.
1531915319
/// - 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.
1532015320
public init(
1532115321
leadingTrivia: Trivia? = nil,
@@ -15745,7 +15745,7 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
1574515745

1574615746
/// - Parameters:
1574715747
/// - 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.
15748-
/// - higherThanOrLowerThanKeyword: The relation to specified other precedence groups.
15748+
/// - higherThanOrLowerThanLabel: The relation to specified other precedence groups.
1574915749
/// - otherNames: The name of other precedence group to which this precedence group relates.
1575015750
/// - 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.
1575115751
public init(

0 commit comments

Comments
 (0)