(e3, t3)
| 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); |
| 2074 | } |
| 2075 | _areCoordsInSelection(e3, t3, i3) { |
| 2076 | return e3[1] > t3[1] && e3[1] < i3[1] || t3[1] === i3[1] && e3[1] === t3[1] && e3[0] >= t3[0] && e3[0] < i3[0] || t3[1] < i3[1] && e3[1] === i3[1] && e3[0] < i3[0] || t3[1] < i3[1] && e3[1] === t3[1] && e3[0] >= t3[0]; |
| 2077 | } |
nothing calls this directly
no test coverage detected