mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-22 02:35:48 -05:00
Fix copy-paste error in navigateToItemIsEqualTo (#36912)
* Fix copy-paste error in navigateToItemIsEqualTo It was preventing de-duping of items found in multiple projects. * Add de-duping test
This commit is contained in:
@@ -1892,7 +1892,7 @@ namespace ts.server {
|
||||
a.fileName === b.fileName &&
|
||||
a.isCaseSensitive === b.isCaseSensitive &&
|
||||
a.kind === b.kind &&
|
||||
a.kindModifiers === b.containerName &&
|
||||
a.kindModifiers === b.kindModifiers &&
|
||||
a.matchKind === b.matchKind &&
|
||||
a.name === b.name &&
|
||||
a.textSpan.start === b.textSpan.start &&
|
||||
|
||||
Reference in New Issue
Block a user