(event: PointerEvent)
| 713 | } |
| 714 | |
| 715 | override _fixValue(event: PointerEvent): void { |
| 716 | super._fixValue(event); |
| 717 | this._sibling?._updateMinMax(); |
| 718 | } |
| 719 | |
| 720 | override _clamp(v: number): number { |
| 721 | return Math.max(Math.min(v, this.getMaxPos()), this.getMinPos()); |
nothing calls this directly
no test coverage detected