()
| 114 | } |
| 115 | |
| 116 | stop() { |
| 117 | if (this.process) { |
| 118 | try { this._request('shutdown', null); } catch {} |
| 119 | this.process.kill(); |
| 120 | this.process = null; |
| 121 | } |
| 122 | this.initialized = false; |
| 123 | } |
| 124 | |
| 125 | // Get diagnostics for a file |
| 126 | async getDiagnostics(filePath) { |
no test coverage detected