()
| 96 | } |
| 97 | |
| 98 | private _clearScreen() { |
| 99 | if (this._clearScreenPending == null) { |
| 100 | return |
| 101 | } |
| 102 | |
| 103 | const log = this._clearScreenPending |
| 104 | this._clearScreenPending = undefined |
| 105 | this.console.log(`${CURSOR_TO_START}${ERASE_DOWN}${log}`) |
| 106 | } |
| 107 | |
| 108 | printError(err: unknown, options: ErrorOptions = {}): void { |
| 109 | printError(err, this.ctx, this, options) |
no test coverage detected