(state, fileName)
| 124234 | return ts.toPath(fileName, state.currentDirectory, state.getCanonicalFileName); |
| 124235 | } |
| 124236 | function toResolvedConfigFilePath(state, fileName) { |
| 124237 | var resolvedConfigFilePaths = state.resolvedConfigFilePaths; |
| 124238 | var path = resolvedConfigFilePaths.get(fileName); |
| 124239 | if (path !== undefined) |
| 124240 | return path; |
| 124241 | var resolvedPath = toPath(state, fileName); |
| 124242 | resolvedConfigFilePaths.set(fileName, resolvedPath); |
| 124243 | return resolvedPath; |
| 124244 | } |
| 124245 | function isParsedCommandLine(entry) { |
| 124246 | return !!entry.options; |
| 124247 | } |
no test coverage detected
searching dependent graphs…