File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1245,25 +1245,25 @@ namespace ts {
12451245 if ( onEmitNode !== noEmitNotification && ( ! isEmitNotificationEnabled || isEmitNotificationEnabled ( node ) ) ) {
12461246 return pipelineEmitWithNotification ;
12471247 }
1248- // falls through
1248+ // falls through
12491249
12501250 case PipelinePhase . Substitution :
12511251 if ( substituteNode !== noEmitSubstitution && ( lastSubstitution = substituteNode ( emitHint , node ) ) !== node ) {
12521252 return pipelineEmitWithSubstitution ;
12531253 }
1254- // falls through
1254+ // falls through
12551255
12561256 case PipelinePhase . Comments :
12571257 if ( ! commentsDisabled && node . kind !== SyntaxKind . SourceFile ) {
12581258 return pipelineEmitWithComments ;
12591259 }
1260- // falls through
1260+ // falls through
12611261
12621262 case PipelinePhase . SourceMaps :
12631263 if ( ! sourceMapsDisabled && node . kind !== SyntaxKind . SourceFile && ! isInJsonFile ( node ) ) {
12641264 return pipelineEmitWithSourceMap ;
12651265 }
1266- // falls through
1266+ // falls through
12671267
12681268 case PipelinePhase . Emit :
12691269 return pipelineEmitWithHint ;
You can’t perform that action at this time.
0 commit comments