()
| 168 | } |
| 169 | |
| 170 | function close() { |
| 171 | fileWatcher.close(); |
| 172 | if (timerHandleForRecompilation) { |
| 173 | host.clearTimeout(timerHandleForRecompilation.timerHandle); |
| 174 | timerHandleForRecompilation = undefined; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | // Invoked to perform initial compilation or re-compilation in watch mode |
| 179 | function doCompilation(): ReadonlyArray<ts.Diagnostic> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…