Skip to content

Commit 3479f4b

Browse files
author
Kanchalai Tanglertsampan
committed
fix linting
1 parent 821348b commit 3479f4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/binder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@ namespace ts {
19131913
? SymbolFlags.Alias
19141914
// An export default clause with any other expression exports a value
19151915
: SymbolFlags.Property;
1916-
declareSymbol(container.symbol.exports, container.symbol, node, flags, SymbolFlags.Property | SymbolFlags.AliasExcludes | SymbolFlags.Class | SymbolFlags.Function); //SymbolFlags.Class | SymbolFlags.Function | SymbolFlags.Property);
1916+
declareSymbol(container.symbol.exports, container.symbol, node, flags, SymbolFlags.Property | SymbolFlags.AliasExcludes | SymbolFlags.Class | SymbolFlags.Function);
19171917
}
19181918
}
19191919

0 commit comments

Comments
 (0)