Skip to content

Commit 6023434

Browse files
committed
fix whitespace
1 parent 6a8e78c commit 6023434

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14081,7 +14081,7 @@ namespace ts {
1408114081
}
1408214082
const {declarations, flags} = exports[id];
1408314083
// ECMA262: 15.2.1.1 It is a Syntax Error if the ExportedNames of ModuleItemList contains any duplicate entries. (TS Exceptions: namespaces, function overloads, enums, and interfaces)
14084-
if (!(flags & (SymbolFlags.Namespace |SymbolFlags.Interface | SymbolFlags.Enum)) && declarations.length > 1) {
14084+
if (!(flags & (SymbolFlags.Namespace | SymbolFlags.Interface | SymbolFlags.Enum)) && declarations.length > 1) {
1408514085
const exportedDeclarations: Declaration[] = filter(declarations, isNotOverload);
1408614086
if (exportedDeclarations.length > 1) {
1408714087
for (const declaration of exportedDeclarations) {

0 commit comments

Comments
 (0)