(method: string, params?: unknown)
| 350 | } |
| 351 | |
| 352 | private sendNotification(method: string, params?: unknown): void { |
| 353 | const payload: JsonRpcLiteNotification = { method, params }; |
| 354 | this.writePayload(payload); |
| 355 | } |
| 356 | |
| 357 | private handleStdout(chunk: string): void { |
| 358 | this.buffer += chunk; |
no test coverage detected