(state, project, projectPath, config, buildOrder)
| 124452 | ts.ExitStatus.Success; |
| 124453 | } |
| 124454 | function createUpdateOutputFileStampsProject(state, project, projectPath, config, buildOrder) { |
| 124455 | var updateOutputFileStampsPending = true; |
| 124456 | return { |
| 124457 | kind: InvalidatedProjectKind.UpdateOutputFileStamps, |
| 124458 | project: project, |
| 124459 | projectPath: projectPath, |
| 124460 | buildOrder: buildOrder, |
| 124461 | getCompilerOptions: function () { return config.options; }, |
| 124462 | getCurrentDirectory: function () { return state.currentDirectory; }, |
| 124463 | updateOutputFileStatmps: function () { |
| 124464 | updateOutputTimestamps(state, config, projectPath); |
| 124465 | updateOutputFileStampsPending = false; |
| 124466 | }, |
| 124467 | done: function () { |
| 124468 | if (updateOutputFileStampsPending) { |
| 124469 | updateOutputTimestamps(state, config, projectPath); |
| 124470 | } |
| 124471 | return doneInvalidatedProject(state, projectPath); |
| 124472 | } |
| 124473 | }; |
| 124474 | } |
| 124475 | var BuildStep; |
| 124476 | (function (BuildStep) { |
| 124477 | BuildStep[BuildStep["CreateProgram"] = 0] = "CreateProgram"; |
no test coverage detected
searching dependent graphs…