()
| 3892 | return this._hasScrollback && this.lines.maxLength > this._rows; |
| 3893 | } |
| 3894 | get isCursorInViewport() { |
| 3895 | const e3 = this.ybase + this.y - this.ydisp; |
| 3896 | return e3 >= 0 && e3 < this._rows; |
| 3897 | } |
| 3898 | _getCorrectBufferLength(e3) { |
| 3899 | if (!this._hasScrollback) return e3; |
| 3900 | const i3 = e3 + this._optionsService.rawOptions.scrollback; |
nothing calls this directly
no outgoing calls
no test coverage detected