()
| 374 | } |
| 375 | |
| 376 | private clearScreen() { |
| 377 | this.writeEmitter.fire(ACTIONS.clearScreen()); |
| 378 | this.curLine = ''; |
| 379 | this.cursorPos = 1; |
| 380 | this.didPrompt = false; |
| 381 | this.doPrompt(); |
| 382 | } |
| 383 | |
| 384 | private killEntireLine() { |
| 385 | const n = this.cursorPos - 1; |
no test coverage detected