(state, program, config)
| 124895 | return ts.readBuilderProgram(parsed.options, compilerHost); |
| 124896 | } |
| 124897 | function afterProgramDone(state, program, config) { |
| 124898 | if (program) { |
| 124899 | if (program && state.write) |
| 124900 | ts.listFiles(program, state.write); |
| 124901 | if (state.host.afterProgramEmitAndDiagnostics) { |
| 124902 | state.host.afterProgramEmitAndDiagnostics(program); |
| 124903 | } |
| 124904 | program.releaseProgram(); |
| 124905 | } |
| 124906 | else if (state.host.afterEmitBundle) { |
| 124907 | state.host.afterEmitBundle(config); |
| 124908 | } |
| 124909 | state.projectCompilerOptions = state.baseCompilerOptions; |
| 124910 | } |
| 124911 | function buildErrors(state, resolvedPath, program, config, diagnostics, buildResult, errorType) { |
| 124912 | var canEmitBuildInfo = !(buildResult & BuildResultFlags.SyntaxErrors) && program && !ts.outFile(program.getCompilerOptions()); |
| 124913 | reportAndStoreErrors(state, resolvedPath, diagnostics); |
no outgoing calls
no test coverage detected
searching dependent graphs…