(path: string)
| 93 | } |
| 94 | |
| 95 | function normalizeSplatSourcePath(path: string): string { |
| 96 | return path.replace(/\\/g, '/').replace(/^\/+/, ''); |
| 97 | } |
| 98 | |
| 99 | function getLocalSplatCandidates(files: Map<string, File>): LocalSplatCandidate[] { |
| 100 | const seen = new Set<File>(); |
no outgoing calls
no test coverage detected