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 {
1245
1245
if ( onEmitNode !== noEmitNotification && ( ! isEmitNotificationEnabled || isEmitNotificationEnabled ( node ) ) ) {
1246
1246
return pipelineEmitWithNotification ;
1247
1247
}
1248
- // falls through
1248
+ // falls through
1249
1249
1250
1250
case PipelinePhase . Substitution :
1251
1251
if ( substituteNode !== noEmitSubstitution && ( lastSubstitution = substituteNode ( emitHint , node ) ) !== node ) {
1252
1252
return pipelineEmitWithSubstitution ;
1253
1253
}
1254
- // falls through
1254
+ // falls through
1255
1255
1256
1256
case PipelinePhase . Comments :
1257
1257
if ( ! commentsDisabled && node . kind !== SyntaxKind . SourceFile ) {
1258
1258
return pipelineEmitWithComments ;
1259
1259
}
1260
- // falls through
1260
+ // falls through
1261
1261
1262
1262
case PipelinePhase . SourceMaps :
1263
1263
if ( ! sourceMapsDisabled && node . kind !== SyntaxKind . SourceFile && ! isInJsonFile ( node ) ) {
1264
1264
return pipelineEmitWithSourceMap ;
1265
1265
}
1266
- // falls through
1266
+ // falls through
1267
1267
1268
1268
case PipelinePhase . Emit :
1269
1269
return pipelineEmitWithHint ;
You can’t perform that action at this time.
0 commit comments