()
| 985 | const rows = this.terminalRows; |
| 986 | const cols = this.terminalColumns; |
| 987 | const blank = (): Frame => ({ |
| 988 | screen: createScreen(cols, rows, this.stylePool, this.charPool, this.hyperlinkPool), |
| 989 | viewport: { |
| 990 | width: cols, |
| 991 | height: rows + 1 |
| 992 | }, |
| 993 | cursor: { |
| 994 | x: 0, |
| 995 | y: 0, |
| 996 | visible: true |
| 997 | } |
| 998 | }); |
| 999 | this.frontFrame = blank(); |
| 1000 | this.backFrame = blank(); |
| 1001 | this.log.reset(); |
nothing calls this directly
no test coverage detected