Skip to content

Commit aaf353e

Browse files
committed
Fix autoformatting again
1 parent 662ee6c commit aaf353e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/compiler/emitter.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)