Skip to content

Commit 08f446d

Browse files
committed
resolve merge conflicts
1 parent f3aba21 commit 08f446d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/compiler/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ module ts {
498498
case SyntaxKind.ForInStatement:
499499
case SyntaxKind.ForStatement:
500500
case SyntaxKind.IfStatement:
501-
case SyntaxKind.LabelledStatement:
501+
case SyntaxKind.LabeledStatement:
502502
case SyntaxKind.ReturnStatement:
503503
case SyntaxKind.SwitchStatement:
504504
case SyntaxKind.ThrowKeyword:

src/services/formatting/smartIndenter.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ module ts.formatting {
209209
if ((<TypeReferenceNode>node.parent).typeArguments) {
210210
return getActualIndentationFromList((<TypeReferenceNode>node.parent).typeArguments);
211211
}
212+
break;
212213
case SyntaxKind.ObjectLiteral:
213214
return getActualIndentationFromList((<ObjectLiteral>node.parent).properties);
214215
case SyntaxKind.TypeLiteral:

0 commit comments

Comments
 (0)