We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb09401 commit 65431a9Copy full SHA for 65431a9
src/compiler/checker.ts
@@ -751,7 +751,10 @@ module ts {
751
forEach(symbol.declarations, node => {
752
if (node.kind === SyntaxKind.SourceFile || node.kind === SyntaxKind.ModuleDeclaration) {
753
forEach((<ExportContainer>node).exportStars, exportStar => {
754
- visit(resolveExternalModuleName(exportStar, exportStar.moduleSpecifier));
+ var moduleSymbol = resolveExternalModuleName(exportStar, exportStar.moduleSpecifier);
755
+ if (moduleSymbol) {
756
+ visit(moduleSymbol);
757
+ }
758
});
759
}
760
0 commit comments