Write stderr data (always piped).
(data: string)
| 170 | |
| 171 | /** Write stderr data (always piped). */ |
| 172 | writeStderr(data: string): void { |
| 173 | this.#writeBuffered(data, true) |
| 174 | } |
| 175 | |
| 176 | #writeBuffered(data: string, isStderr: boolean): void { |
| 177 | this.#totalBytes += data.length |
no test coverage detected