File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43127,10 +43127,10 @@ namespace ts {
43127
43127
}
43128
43128
else {
43129
43129
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));
43131
43131
}
43132
43132
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));
43134
43134
}
43135
43135
else if ((currentKind & DeclarationMeaning.GetOrSetAccessor) && (existingKind & DeclarationMeaning.GetOrSetAccessor)) {
43136
43136
if (existingKind !== DeclarationMeaning.GetOrSetAccessor && currentKind !== existingKind) {
You can’t perform that action at this time.
0 commit comments