@@ -75,26 +75,27 @@ extension EnumCaseParameterSyntax {
75
75
trailingComma: TokenSyntax ? = nil ,
76
76
_ unexpectedAfterTrailingComma: UnexpectedNodesSyntax ? = nil ,
77
77
trailingTrivia: Trivia ? = nil
78
-
79
78
) {
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.
81
80
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
+ )
99
100
}
100
101
}
0 commit comments