@@ -10504,9 +10504,9 @@ public struct InheritedTypeSyntax: SyntaxProtocol, SyntaxHashable {
1050410504
1050510505 public init<T: TypeSyntaxProtocol>(
1050610506 leadingTrivia: Trivia? = nil,
10507- _ unexpectedBeforeHasWithout : UnexpectedNodesSyntax? = nil,
10508- hasWithout : TokenSyntax? = nil,
10509- _ unexpectedBetweenHasWithoutAndTypeName : UnexpectedNodesSyntax? = nil,
10507+ _ unexpectedBeforeWithoutTilde : UnexpectedNodesSyntax? = nil,
10508+ withoutTilde : TokenSyntax? = nil,
10509+ _ unexpectedBetweenWithoutTildeAndTypeName : UnexpectedNodesSyntax? = nil,
1051010510 typeName: T,
1051110511 _ unexpectedBetweenTypeNameAndTrailingComma: UnexpectedNodesSyntax? = nil,
1051210512 trailingComma: TokenSyntax? = nil,
@@ -10517,18 +10517,18 @@ public struct InheritedTypeSyntax: SyntaxProtocol, SyntaxHashable {
1051710517 // Extend the lifetime of all parameters so their arenas don't get destroyed
1051810518 // before they can be added as children of the new arena.
1051910519 let data: SyntaxData = withExtendedLifetime((SyntaxArena(), (
10520- unexpectedBeforeHasWithout ,
10521- hasWithout ,
10522- unexpectedBetweenHasWithoutAndTypeName ,
10520+ unexpectedBeforeWithoutTilde ,
10521+ withoutTilde ,
10522+ unexpectedBetweenWithoutTildeAndTypeName ,
1052310523 typeName,
1052410524 unexpectedBetweenTypeNameAndTrailingComma,
1052510525 trailingComma,
1052610526 unexpectedAfterTrailingComma
1052710527 ))) {(arena, _) in
1052810528 let layout: [RawSyntax?] = [
10529- unexpectedBeforeHasWithout ?.raw,
10530- hasWithout ?.raw,
10531- unexpectedBetweenHasWithoutAndTypeName ?.raw,
10529+ unexpectedBeforeWithoutTilde ?.raw,
10530+ withoutTilde ?.raw,
10531+ unexpectedBetweenWithoutTildeAndTypeName ?.raw,
1053210532 typeName.raw,
1053310533 unexpectedBetweenTypeNameAndTrailingComma?.raw,
1053410534 trailingComma?.raw,
@@ -10546,7 +10546,7 @@ public struct InheritedTypeSyntax: SyntaxProtocol, SyntaxHashable {
1054610546 self.init(data)
1054710547 }
1054810548
10549- public var unexpectedBeforeHasWithout : UnexpectedNodesSyntax? {
10549+ public var unexpectedBeforeWithoutTilde : UnexpectedNodesSyntax? {
1055010550 get {
1055110551 return data.child(at: 0, parent: Syntax(self)).map(UnexpectedNodesSyntax.init)
1055210552 }
@@ -10555,7 +10555,7 @@ public struct InheritedTypeSyntax: SyntaxProtocol, SyntaxHashable {
1055510555 }
1055610556 }
1055710557
10558- public var hasWithout : TokenSyntax? {
10558+ public var withoutTilde : TokenSyntax? {
1055910559 get {
1056010560 return data.child(at: 1, parent: Syntax(self)).map(TokenSyntax.init)
1056110561 }
@@ -10564,7 +10564,7 @@ public struct InheritedTypeSyntax: SyntaxProtocol, SyntaxHashable {
1056410564 }
1056510565 }
1056610566
10567- public var unexpectedBetweenHasWithoutAndTypeName : UnexpectedNodesSyntax? {
10567+ public var unexpectedBetweenWithoutTildeAndTypeName : UnexpectedNodesSyntax? {
1056810568 get {
1056910569 return data.child(at: 2, parent: Syntax(self)).map(UnexpectedNodesSyntax.init)
1057010570 }
@@ -10611,9 +10611,9 @@ public struct InheritedTypeSyntax: SyntaxProtocol, SyntaxHashable {
1061110611
1061210612 public static var structure: SyntaxNodeStructure {
1061310613 return .layout([
10614- \Self.unexpectedBeforeHasWithout ,
10615- \Self.hasWithout ,
10616- \Self.unexpectedBetweenHasWithoutAndTypeName ,
10614+ \Self.unexpectedBeforeWithoutTilde ,
10615+ \Self.withoutTilde ,
10616+ \Self.unexpectedBetweenWithoutTildeAndTypeName ,
1061710617 \Self.typeName,
1061810618 \Self.unexpectedBetweenTypeNameAndTrailingComma,
1061910619 \Self.trailingComma,
0 commit comments