@@ -129,50 +129,50 @@ internal static SyntaxNode WithModifiers(this SyntaxNode node, SyntaxTokenList m
129129 {
130130 switch ( node . Kind ( ) )
131131 {
132- case SyntaxKind . MethodDeclaration :
133- return ( ( MethodDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
132+ case SyntaxKind . MethodDeclaration :
133+ return ( ( MethodDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
134134
135- case SyntaxKind . ConstructorDeclaration :
136- return ( ( ConstructorDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
135+ case SyntaxKind . ConstructorDeclaration :
136+ return ( ( ConstructorDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
137137
138- case SyntaxKind . OperatorDeclaration :
139- return ( ( OperatorDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
138+ case SyntaxKind . OperatorDeclaration :
139+ return ( ( OperatorDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
140140
141- case SyntaxKind . ConversionOperatorDeclaration :
142- return ( ( ConversionOperatorDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
141+ case SyntaxKind . ConversionOperatorDeclaration :
142+ return ( ( ConversionOperatorDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
143143
144- case SyntaxKind . PropertyDeclaration :
145- return ( ( PropertyDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
144+ case SyntaxKind . PropertyDeclaration :
145+ return ( ( PropertyDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
146146
147- case SyntaxKind . EventDeclaration :
148- return ( ( EventDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
147+ case SyntaxKind . EventDeclaration :
148+ return ( ( EventDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
149149
150- case SyntaxKind . IndexerDeclaration :
151- return ( ( IndexerDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
150+ case SyntaxKind . IndexerDeclaration :
151+ return ( ( IndexerDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
152152
153- case SyntaxKind . ClassDeclaration :
154- return ( ( ClassDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
153+ case SyntaxKind . ClassDeclaration :
154+ return ( ( ClassDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
155155
156- case SyntaxKind . StructDeclaration :
157- return ( ( StructDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
156+ case SyntaxKind . StructDeclaration :
157+ return ( ( StructDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
158158
159- case SyntaxKind . InterfaceDeclaration :
160- return ( ( InterfaceDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
159+ case SyntaxKind . InterfaceDeclaration :
160+ return ( ( InterfaceDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
161161
162- case SyntaxKind . EnumDeclaration :
163- return ( ( EnumDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
162+ case SyntaxKind . EnumDeclaration :
163+ return ( ( EnumDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
164164
165- case SyntaxKind . DelegateDeclaration :
166- return ( ( DelegateDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
165+ case SyntaxKind . DelegateDeclaration :
166+ return ( ( DelegateDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
167167
168- case SyntaxKind . FieldDeclaration :
169- return ( ( FieldDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
168+ case SyntaxKind . FieldDeclaration :
169+ return ( ( FieldDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
170170
171- case SyntaxKind . EventFieldDeclaration :
172- return ( ( EventFieldDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
171+ case SyntaxKind . EventFieldDeclaration :
172+ return ( ( EventFieldDeclarationSyntax ) node ) . WithModifiers ( modifiers ) ;
173173
174- default :
175- return node ;
174+ default :
175+ return node ;
176176 }
177177 }
178178 }
0 commit comments