Merge pull request #27485 from IllusionMH/fix-completionInfo-exception-27338

Use safe some function to handle undefined declarations (fixes #27338)
This commit is contained in:
Ryan Cavanaugh 2018-10-02 11:28:38 -07:00 committed by GitHub
commit c04faa1e5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1397,7 +1397,7 @@ namespace ts.Completions {
if (resolvedModuleSymbol !== moduleSymbol &&
// Don't add another completion for `export =` of a symbol that's already global.
// So in `declare namespace foo {} declare module "foo" { export = foo; }`, there will just be the global completion for `foo`.
resolvedModuleSymbol.declarations.some(d => !!d.getSourceFile().externalModuleIndicator)) {
some(resolvedModuleSymbol.declarations, d => !!d.getSourceFile().externalModuleIndicator)) {
symbols.push(resolvedModuleSymbol);
symbolToOriginInfoMap[getSymbolId(resolvedModuleSymbol)] = { kind: SymbolOriginInfoKind.Export, moduleSymbol, isDefaultExport: false };
}