Ignore unknown files to search from in document highlights

This commit is contained in:
Sheetal Nandi
2019-08-09 15:06:51 -07:00
parent a02735e1fb
commit b7e49d1d1c
2 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -1565,7 +1565,7 @@ namespace ts {
const normalizedFileName = normalizePath(fileName);
Debug.assert(filesToSearch.some(f => normalizePath(f) === normalizedFileName));
synchronizeHostData();
const sourceFilesToSearch = filesToSearch.map(getValidSourceFile);
const sourceFilesToSearch = mapDefined(filesToSearch, fileName => program.getSourceFile(fileName));
const sourceFile = getValidSourceFile(fileName);
return DocumentHighlights.getDocumentHighlights(program, cancellationToken, sourceFile, position, sourceFilesToSearch);
}