Fix merge error

This commit is contained in:
Yui T 2015-12-17 21:08:11 -08:00
parent 73911a327d
commit a5c632cd5a

View file

@ -5934,7 +5934,7 @@ namespace ts {
function populateSearchSymbolSet(symbol: Symbol, location: Node): Symbol[] {
// The search set contains at least the current symbol
const result = [symbol];
let result = [symbol];
// If the symbol is an alias, add what it alaises to the list
if (isImportOrExportSpecifierImportSymbol(symbol)) {