(
buffer: IBuffer,
private readonly _terminal: ITerminalCore,
)
| 250 | private _lastContentCursorCol: number = 0 |
| 251 | |
| 252 | constructor( |
| 253 | buffer: IBuffer, |
| 254 | private readonly _terminal: ITerminalCore, |
| 255 | ) { |
| 256 | super(buffer) |
| 257 | this._cursorStyle = this._buffer.getNullCell() |
| 258 | } |
| 259 | |
| 260 | protected _beforeSerialize(rows: number, start: number, _end: number): void { |
| 261 | this._allRows = Array.from<string>({ length: rows }) |
nothing calls this directly
no test coverage detected