Skip to content

Re-generate sources #1889

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3248,7 +3248,7 @@ public struct ImportDeclSyntax: DeclSyntaxProtocol, SyntaxHashable {
/// - attributes: Attributes attached to the import declaration, for example `@testable`.
/// - modifiers: Modifiers attached to the import declaration. Currently, no modifiers are supported by Swift.
/// - importKeyword: The `import` keyword for this declaration.
/// - importKind: The kind of declaration being imported. For example, a struct can be imported from a specific module.
/// - importKindSpecifier: The kind of declaration being imported. For example, a struct can be imported from a specific module.
/// - path: The path to the module, submodule or symbol being imported.
/// - 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.
public init(
Expand Down Expand Up @@ -4865,7 +4865,7 @@ public struct OperatorDeclSyntax: DeclSyntaxProtocol, SyntaxHashable {

/// - Parameters:
/// - 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.
/// - fixity: The fixity applied to the 'operator' declaration.
/// - fixitySpecifier: The fixity applied to the 'operator' declaration.
/// - operatorPrecedenceAndTypes: Optionally specify a precedence group and designated types.
/// - 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.
public init(
Expand Down
10 changes: 5 additions & 5 deletions Sources/SwiftSyntax/generated/syntaxNodes/SyntaxNodes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6599,7 +6599,7 @@ public struct DerivativeRegistrationAttributeArgumentsSyntax: SyntaxProtocol, Sy
/// - colon: The colon separating the "of" label and the original declaration name.
/// - originalDeclName: The referenced original declaration name.
/// - period: The period separating the original declaration name and the accessor name.
/// - accessorKind: The accessor name.
/// - accessorSpecifier: The accessor name.
/// - 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.
public init(
leadingTrivia: Trivia? = nil,
Expand Down Expand Up @@ -7662,8 +7662,8 @@ public struct DifferentiableAttributeArgumentsSyntax: SyntaxProtocol, SyntaxHash

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

/// - Parameters:
/// - 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.
/// - 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.
/// - 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.
/// - 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.
public init(
leadingTrivia: Trivia? = nil,
Expand Down Expand Up @@ -15745,7 +15745,7 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {

/// - Parameters:
/// - 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.
/// - higherThanOrLowerThanKeyword: The relation to specified other precedence groups.
/// - higherThanOrLowerThanLabel: The relation to specified other precedence groups.
/// - otherNames: The name of other precedence group to which this precedence group relates.
/// - 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.
public init(
Expand Down