(method, params)
| 179 | } |
| 180 | |
| 181 | _notify(method, params) { |
| 182 | if (!this.process) return; |
| 183 | const msg = { jsonrpc: '2.0', method, params }; |
| 184 | this.process.stdin.write(encodeMessage(msg)); |
| 185 | } |
| 186 | |
| 187 | _onData(data) { |
| 188 | this.buffer += data; |
no test coverage detected