(pathA, pathB)
| 139578 | return ts.normalizePath(ts.combinePaths(pathA, pathB)); |
| 139579 | } |
| 139580 | function combinePathsSafe(pathA, pathB) { |
| 139581 | return ts.ensurePathIsNonModuleName(combineNormal(pathA, pathB)); |
| 139582 | } |
| 139583 | function getSourceFileToImport(importedModuleSymbol, importLiteral, importingSourceFile, program, host, oldToNew) { |
| 139584 | if (importedModuleSymbol) { |
| 139585 | // `find` should succeed because we checked for ambient modules before calling this function. |
no test coverage detected