@@ -75,26 +75,27 @@ extension EnumCaseParameterSyntax {
7575 trailingComma: TokenSyntax ? = nil ,
7676 _ unexpectedAfterTrailingComma: UnexpectedNodesSyntax ? = nil ,
7777 trailingTrivia: Trivia ? = nil
78-
7978 ) {
80- // Wrapping firstName as an Optional so that we can use the generated overload.
79+ // Wrapping firstName as an Optional so that we can use the generated overload.
8180 let firstNameAsOptional : TokenSyntax ? = firstName
82- self = . init( leadingTrivia: leadingTrivia,
83- unexpectedBeforeModifiers,
84- modifiers: modifiers,
85- unexpectedBetweenModifiersAndFirstName,
86- firstName: firstNameAsOptional,
87- unexpectedBetweenFirstNameAndSecondName,
88- secondName: secondName,
89- unexpectedBetweenSecondNameAndColon,
90- colon: colon,
91- unexpectedBetweenColonAndType,
92- type: type,
93- unexpectedBetweenTypeAndDefaultValue,
94- defaultValue: defaultValue,
95- unexpectedBetweenDefaultValueAndTrailingComma,
96- trailingComma: trailingComma,
97- unexpectedAfterTrailingComma,
98- trailingTrivia: trailingTrivia)
81+ self . init (
82+ leadingTrivia: leadingTrivia,
83+ unexpectedBeforeModifiers,
84+ modifiers: modifiers,
85+ unexpectedBetweenModifiersAndFirstName,
86+ firstName: firstNameAsOptional,
87+ unexpectedBetweenFirstNameAndSecondName,
88+ secondName: secondName,
89+ unexpectedBetweenSecondNameAndColon,
90+ colon: colon,
91+ unexpectedBetweenColonAndType,
92+ type: type,
93+ unexpectedBetweenTypeAndDefaultValue,
94+ defaultValue: defaultValue,
95+ unexpectedBetweenDefaultValueAndTrailingComma,
96+ trailingComma: trailingComma,
97+ unexpectedAfterTrailingComma,
98+ trailingTrivia: trailingTrivia
99+ )
99100 }
100101}
0 commit comments