Skip to content

Commit 9e07b1f

Browse files
committed
fix indent
1 parent 9f61bcd commit 9e07b1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/checker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43127,10 +43127,10 @@ namespace ts {
4312743127
}
4312843128
else {
4312943129
if ((currentKind & DeclarationMeaning.Method) && (existingKind & DeclarationMeaning.Method)) {
43130-
grammarErrorOnNode(name, Diagnostics.Duplicate_identifier_0, getTextOfNode(name));
43130+
grammarErrorOnNode(name, Diagnostics.Duplicate_identifier_0, getTextOfNode(name));
4313143131
}
4313243132
else if ((currentKind & DeclarationMeaning.PropertyAssignment) && (existingKind & DeclarationMeaning.PropertyAssignment)) {
43133-
grammarErrorOnNode(name, Diagnostics.An_object_literal_cannot_have_multiple_properties_with_the_same_name, getTextOfNode(name));
43133+
grammarErrorOnNode(name, Diagnostics.An_object_literal_cannot_have_multiple_properties_with_the_same_name, getTextOfNode(name));
4313443134
}
4313543135
else if ((currentKind & DeclarationMeaning.GetOrSetAccessor) && (existingKind & DeclarationMeaning.GetOrSetAccessor)) {
4313643136
if (existingKind !== DeclarationMeaning.GetOrSetAccessor && currentKind !== existingKind) {

0 commit comments

Comments
 (0)