(text, appendNewline = false)
| 186 | } |
| 187 | |
| 188 | print(text, appendNewline = false) { |
| 189 | this.clearLine(); |
| 190 | this.stdout.write(appendNewline ? `${text}\n` : text); |
| 191 | } |
| 192 | |
| 193 | #stdioBuffers = { stdout: '', stderr: '' }; |
| 194 | childPrint(text, which) { |
no test coverage detected