()
| 130 | // pause and resume are used when the terminal should appear to not take any input |
| 131 | // all further input is lost. Output will still be processed |
| 132 | public pause() { |
| 133 | this.isPaused = true; |
| 134 | } |
| 135 | public resume() { |
| 136 | this.isPaused = false; |
| 137 | } |
no outgoing calls
no test coverage detected