(file)
| 53 | } |
| 54 | |
| 55 | export function openOriginalFile(file) { |
| 56 | const originalDir = settings.originalDir; |
| 57 | const originalExt = settings.originalExt || file.extension; |
| 58 | if (originalDir && file.pathRelative) { |
| 59 | const name = file.nameWithoutExtension; |
| 60 | const path = [originalDir, file.containingDirectory, name + originalExt].join("/"); |
| 61 | return cacheValue(fileCache, path, () => utility.openFile(path)); |
| 62 | } |
| 63 | } |
nothing calls this directly
no test coverage detected