()
| 1602 | this.selectionStart = void 0, this.selectionEnd = void 0, this.isSelectAllActive = false, this.selectionStartLength = 0; |
| 1603 | } |
| 1604 | get finalSelectionStart() { |
| 1605 | return this.isSelectAllActive ? [0, 0] : this.selectionEnd && this.selectionStart && this.areSelectionValuesReversed() ? this.selectionEnd : this.selectionStart; |
| 1606 | } |
| 1607 | get finalSelectionEnd() { |
| 1608 | if (this.isSelectAllActive) return [this._bufferService.cols, this._bufferService.buffer.ybase + this._bufferService.rows - 1]; |
| 1609 | if (this.selectionStart) { |
nothing calls this directly
no test coverage detected