(a: string, b: string)
| 323 | } |
| 324 | |
| 325 | function pathsMatch(a: string, b: string): boolean { |
| 326 | return a === b || a.endsWith(b) || b.endsWith(a); |
| 327 | } |
| 328 | |
| 329 | const resultPathSet = new Set(results.map((result) => normalizeGraphPath(result.filePath))); |
| 330 | const resultSymbolSet = new Set( |
no outgoing calls
no test coverage detected