@@ -14625,9 +14625,9 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
14625
14625
14626
14626
public init(
14627
14627
leadingTrivia: Trivia? = nil,
14628
- _ unexpectedBeforeHigherThanOrLowerThan : UnexpectedNodesSyntax? = nil,
14629
- higherThanOrLowerThan : TokenSyntax,
14630
- _ unexpectedBetweenHigherThanOrLowerThanAndColon : UnexpectedNodesSyntax? = nil,
14628
+ _ unexpectedBeforeHigherThanOrLowerThanKeyword : UnexpectedNodesSyntax? = nil,
14629
+ higherThanOrLowerThanKeyword : TokenSyntax,
14630
+ _ unexpectedBetweenHigherThanOrLowerThanKeywordAndColon : UnexpectedNodesSyntax? = nil,
14631
14631
colon: TokenSyntax = .colonToken(),
14632
14632
_ unexpectedBetweenColonAndOtherNames: UnexpectedNodesSyntax? = nil,
14633
14633
otherNames: PrecedenceGroupNameListSyntax,
@@ -14638,18 +14638,18 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
14638
14638
// Extend the lifetime of all parameters so their arenas don't get destroyed
14639
14639
// before they can be added as children of the new arena.
14640
14640
let data: SyntaxData = withExtendedLifetime((SyntaxArena(), (
14641
- unexpectedBeforeHigherThanOrLowerThan ,
14642
- higherThanOrLowerThan ,
14643
- unexpectedBetweenHigherThanOrLowerThanAndColon ,
14641
+ unexpectedBeforeHigherThanOrLowerThanKeyword ,
14642
+ higherThanOrLowerThanKeyword ,
14643
+ unexpectedBetweenHigherThanOrLowerThanKeywordAndColon ,
14644
14644
colon,
14645
14645
unexpectedBetweenColonAndOtherNames,
14646
14646
otherNames,
14647
14647
unexpectedAfterOtherNames
14648
14648
))) {(arena, _) in
14649
14649
let layout: [RawSyntax?] = [
14650
- unexpectedBeforeHigherThanOrLowerThan ?.raw,
14651
- higherThanOrLowerThan .raw,
14652
- unexpectedBetweenHigherThanOrLowerThanAndColon ?.raw,
14650
+ unexpectedBeforeHigherThanOrLowerThanKeyword ?.raw,
14651
+ higherThanOrLowerThanKeyword .raw,
14652
+ unexpectedBetweenHigherThanOrLowerThanKeywordAndColon ?.raw,
14653
14653
colon.raw,
14654
14654
unexpectedBetweenColonAndOtherNames?.raw,
14655
14655
otherNames.raw,
@@ -14668,7 +14668,7 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
14668
14668
self.init(data)
14669
14669
}
14670
14670
14671
- public var unexpectedBeforeHigherThanOrLowerThan : UnexpectedNodesSyntax? {
14671
+ public var unexpectedBeforeHigherThanOrLowerThanKeyword : UnexpectedNodesSyntax? {
14672
14672
get {
14673
14673
return data.child(at: 0, parent: Syntax(self)).map(UnexpectedNodesSyntax.init)
14674
14674
}
@@ -14678,7 +14678,7 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
14678
14678
}
14679
14679
14680
14680
/// The relation to specified other precedence groups.
14681
- public var higherThanOrLowerThan : TokenSyntax {
14681
+ public var higherThanOrLowerThanKeyword : TokenSyntax {
14682
14682
get {
14683
14683
return TokenSyntax(data.child(at: 1, parent: Syntax(self))!)
14684
14684
}
@@ -14687,7 +14687,7 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
14687
14687
}
14688
14688
}
14689
14689
14690
- public var unexpectedBetweenHigherThanOrLowerThanAndColon : UnexpectedNodesSyntax? {
14690
+ public var unexpectedBetweenHigherThanOrLowerThanKeywordAndColon : UnexpectedNodesSyntax? {
14691
14691
get {
14692
14692
return data.child(at: 2, parent: Syntax(self)).map(UnexpectedNodesSyntax.init)
14693
14693
}
@@ -14754,9 +14754,9 @@ public struct PrecedenceGroupRelationSyntax: SyntaxProtocol, SyntaxHashable {
14754
14754
14755
14755
public static var structure: SyntaxNodeStructure {
14756
14756
return .layout([
14757
- \Self.unexpectedBeforeHigherThanOrLowerThan ,
14758
- \Self.higherThanOrLowerThan ,
14759
- \Self.unexpectedBetweenHigherThanOrLowerThanAndColon ,
14757
+ \Self.unexpectedBeforeHigherThanOrLowerThanKeyword ,
14758
+ \Self.higherThanOrLowerThanKeyword ,
14759
+ \Self.unexpectedBetweenHigherThanOrLowerThanKeywordAndColon ,
14760
14760
\Self.colon,
14761
14761
\Self.unexpectedBetweenColonAndOtherNames,
14762
14762
\Self.otherNames,
0 commit comments