(fileName, basePath, getCanonicalFileName)
| 8006 | } |
| 8007 | ts.getNormalizedAbsolutePathWithoutRoot = getNormalizedAbsolutePathWithoutRoot; |
| 8008 | function toPath(fileName, basePath, getCanonicalFileName) { |
| 8009 | var nonCanonicalizedPath = isRootedDiskPath(fileName) |
| 8010 | ? normalizePath(fileName) |
| 8011 | : getNormalizedAbsolutePath(fileName, basePath); |
| 8012 | return getCanonicalFileName(nonCanonicalizedPath); |
| 8013 | } |
| 8014 | ts.toPath = toPath; |
| 8015 | function removeTrailingDirectorySeparator(path) { |
| 8016 | if (hasTrailingDirectorySeparator(path)) { |
no test coverage detected
searching dependent graphs…