Skip to content

Commit 5a937eb

Browse files
committed
fix merge conflict
1 parent 7617bb3 commit 5a937eb

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/services/findAllReferences.ts

-4
Original file line numberDiff line numberDiff line change
@@ -1915,9 +1915,6 @@ namespace ts.FindAllReferences {
19151915
function populateSearchSymbolSet(symbol: Symbol, location: Node, checker: TypeChecker, isForRename: boolean, providePrefixAndSuffixText: boolean, implementations: boolean): Symbol[] {
19161916
const result: Symbol[] = [];
19171917
forEachRelatedSymbol<void>(symbol, location, checker, isForRename, !(isForRename && providePrefixAndSuffixText),
1918-
<<<<<<< HEAD
1919-
(sym, root, base) => { result.push(base || root || sym); },
1920-
=======
19211918
(sym, root, base) => {
19221919
// static method/property and instance method/property might have the same name. Only include static or only include instance.
19231920
if (base) {
@@ -1928,7 +1925,6 @@ namespace ts.FindAllReferences {
19281925
result.push(base || root || sym);
19291926
},
19301927
// when try to find implementation, implementations is true, and not allowed to find base class
1931-
>>>>>>> master
19321928
/*allowBaseTypes*/() => !implementations);
19331929
return result;
19341930
}

0 commit comments

Comments
 (0)