Skip to content

Commit a5c632c

Browse files
author
Yui T
committed
Fix merge error
1 parent 73911a3 commit a5c632c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5934,7 +5934,7 @@ namespace ts {
59345934

59355935
function populateSearchSymbolSet(symbol: Symbol, location: Node): Symbol[] {
59365936
// The search set contains at least the current symbol
5937-
const result = [symbol];
5937+
let result = [symbol];
59385938

59395939
// If the symbol is an alias, add what it alaises to the list
59405940
if (isImportOrExportSpecifierImportSymbol(symbol)) {

0 commit comments

Comments
 (0)