(e3)
| 2065 | this._refreshAnimationFrame = void 0, this._onRedrawRequest.fire({ start: this._model.finalSelectionStart, end: this._model.finalSelectionEnd, columnSelectMode: 3 === this._activeSelectionMode }); |
| 2066 | } |
| 2067 | _isClickInSelection(e3) { |
| 2068 | const t3 = this._getMouseBufferCoords(e3), i3 = this._model.finalSelectionStart, s3 = this._model.finalSelectionEnd; |
| 2069 | return !!(i3 && s3 && t3) && this._areCoordsInSelection(t3, i3, s3); |
| 2070 | } |
| 2071 | isCellInSelection(e3, t3) { |
| 2072 | const i3 = this._model.finalSelectionStart, s3 = this._model.finalSelectionEnd; |
| 2073 | return !(!i3 || !s3) && this._areCoordsInSelection([e3, t3], i3, s3); |
no test coverage detected