(commandLine, inputFileName, ignoreCase)
| 110186 | } |
| 110187 | ts.getAllProjectOutputs = getAllProjectOutputs; |
| 110188 | function getOutputFileNames(commandLine, inputFileName, ignoreCase) { |
| 110189 | inputFileName = ts.normalizePath(inputFileName); |
| 110190 | ts.Debug.assert(ts.contains(commandLine.fileNames, inputFileName), "Expected fileName to be present in command line"); |
| 110191 | var _a = createAddOutput(), addOutput = _a.addOutput, getOutputs = _a.getOutputs; |
| 110192 | if (ts.outFile(commandLine.options)) { |
| 110193 | getSingleOutputFileNames(commandLine, addOutput); |
| 110194 | } |
| 110195 | else { |
| 110196 | getOwnOutputFileNames(commandLine, inputFileName, ignoreCase, addOutput); |
| 110197 | } |
| 110198 | return getOutputs(); |
| 110199 | } |
| 110200 | ts.getOutputFileNames = getOutputFileNames; |
| 110201 | /*@internal*/ |
| 110202 | function getFirstProjectOutput(configFile, ignoreCase) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…