(data)
| 275 | } |
| 276 | |
| 277 | _handleStdoutData(data) { |
| 278 | debug(`enter _handleStdoutData(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
| 279 | this._checkState([IN_CALL, EXITING]); |
| 280 | if (this.state == IN_CALL) { |
| 281 | this.outputStdout += data; |
| 282 | this.outputBoth += data; |
| 283 | } else { |
| 284 | this._logError(`Unexpected STDOUT data: ${data}`); |
| 285 | } |
| 286 | debug(`exit _handleStdoutData(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
| 287 | } |
| 288 | |
| 289 | _handleStdio3Data(data) { |
| 290 | debug(`enter _handleStdio3Data(), state: ${String(this.state)}, uuid: ${this.uuid}`); |
nothing calls this directly
no test coverage detected