(e3, t3)
| 1488 | return e3.isDim() ? this._themeService.colors.halfContrastCache : this._themeService.colors.contrastCache; |
| 1489 | } |
| 1490 | _addStyle(e3, t3) { |
| 1491 | e3.setAttribute("style", `${e3.getAttribute("style") || ""}${t3};`); |
| 1492 | } |
| 1493 | _isCellInSelection(e3, t3) { |
| 1494 | const i3 = this._selectionStart, s3 = this._selectionEnd; |
| 1495 | return !(!i3 || !s3) && (this._columnSelectMode ? i3[0] <= s3[0] ? e3 >= i3[0] && t3 >= i3[1] && e3 < s3[0] && t3 <= s3[1] : e3 < i3[0] && t3 >= i3[1] && e3 >= s3[0] && t3 <= s3[1] : t3 > i3[1] && t3 < s3[1] || i3[1] === s3[1] && t3 === i3[1] && e3 >= i3[0] && e3 < s3[0] || i3[1] < s3[1] && t3 === s3[1] && e3 < s3[0] || i3[1] < s3[1] && t3 === i3[1] && e3 >= i3[0]); |
no outgoing calls
no test coverage detected