You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/SwiftSyntax/generated/syntaxNodes/SyntaxDeclNodes.swift
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3248,7 +3248,7 @@ public struct ImportDeclSyntax: DeclSyntaxProtocol, SyntaxHashable {
3248
3248
/// - attributes: Attributes attached to the import declaration, for example `@testable`.
3249
3249
/// - modifiers: Modifiers attached to the import declaration. Currently, no modifiers are supported by Swift.
3250
3250
/// - 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.
3252
3252
/// - path: The path to the module, submodule or symbol being imported.
3253
3253
/// - 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.
3254
3254
publicinit(
@@ -4865,7 +4865,7 @@ public struct OperatorDeclSyntax: DeclSyntaxProtocol, SyntaxHashable {
4865
4865
4866
4866
/// - Parameters:
4867
4867
/// - 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.
4869
4869
/// - operatorPrecedenceAndTypes: Optionally specify a precedence group and designated types.
4870
4870
/// - 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.
Copy file name to clipboardExpand all lines: Sources/SwiftSyntax/generated/syntaxNodes/SyntaxNodes.swift
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -6599,7 +6599,7 @@ public struct DerivativeRegistrationAttributeArgumentsSyntax: SyntaxProtocol, Sy
6599
6599
/// - colon: The colon separating the "of" label and the original declaration name.
6600
6600
/// - originalDeclName: The referenced original declaration name.
6601
6601
/// - period: The period separating the original declaration name and the accessor name.
6602
-
/// - accessorKind: The accessor name.
6602
+
/// - accessorSpecifier: The accessor name.
6603
6603
/// - 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.
6604
6604
public init(
6605
6605
leadingTrivia: Trivia? = nil,
@@ -7662,8 +7662,8 @@ public struct DifferentiableAttributeArgumentsSyntax: SyntaxProtocol, SyntaxHash
7662
7662
7663
7663
/// - Parameters:
7664
7664
/// - 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.
7667
7667
/// - 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.
7668
7668
public init(
7669
7669
leadingTrivia: Trivia? = nil,
@@ -15315,7 +15315,7 @@ public struct PrecedenceGroupAssignmentSyntax: SyntaxProtocol, SyntaxHashable {
15315
15315
15316
15316
/// - Parameters:
15317
15317
/// - 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.
15319
15319
/// - 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.
15320
15320
public init(
15321
15321
leadingTrivia: Trivia? = nil,
@@ -15745,7 +15745,7 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
15745
15745
15746
15746
/// - Parameters:
15747
15747
/// - 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.
15749
15749
/// - otherNames: The name of other precedence group to which this precedence group relates.
15750
15750
/// - 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.
0 commit comments