(string)
| 308 | |
| 309 | // Send 'string' to the program on its stdin. |
| 310 | write(string) { |
| 311 | this._ensureStarted(); |
| 312 | this.proc.stdin.write(string); |
| 313 | } |
| 314 | |
| 315 | // Kill the program and then wait for it to actually exit. |
| 316 | stop() { |
no test coverage detected