(fileName, currentDirectory)
| 8002 | return pathComponents.slice(1).join(ts.directorySeparator); |
| 8003 | } |
| 8004 | function getNormalizedAbsolutePathWithoutRoot(fileName, currentDirectory) { |
| 8005 | return getPathWithoutRoot(getNormalizedPathComponents(fileName, currentDirectory)); |
| 8006 | } |
| 8007 | ts.getNormalizedAbsolutePathWithoutRoot = getNormalizedAbsolutePathWithoutRoot; |
| 8008 | function toPath(fileName, basePath, getCanonicalFileName) { |
| 8009 | var nonCanonicalizedPath = isRootedDiskPath(fileName) |
nothing calls this directly
no test coverage detected
searching dependent graphs…