(path)
| 120651 | return ts.ensurePathIsNonModuleName(ts.getRelativePathFromDirectory(buildInfoDirectory, path, getCanonicalFileName)); |
| 120652 | } |
| 120653 | function toFileId(path) { |
| 120654 | var fileId = fileNameToFileId.get(path); |
| 120655 | if (fileId === undefined) { |
| 120656 | fileNames.push(relativeToBuildInfo(path)); |
| 120657 | fileNameToFileId.set(path, fileId = fileNames.length); |
| 120658 | } |
| 120659 | return fileId; |
| 120660 | } |
| 120661 | function toFileIdListId(set) { |
| 120662 | var fileIds = ts.arrayFrom(set.keys(), toFileId).sort(ts.compareValues); |
| 120663 | var key = fileIds.join(); |
no test coverage detected
searching dependent graphs…