()
| 618 | } |
| 619 | |
| 620 | _decValue() { |
| 621 | if (this._decIconClickable && !this.disabled && !this.readonly) { |
| 622 | this._modifyValue(-this.step, true); |
| 623 | this._previousValue = this.value; |
| 624 | } |
| 625 | } |
| 626 | |
| 627 | get _isValueWithCorrectPrecision() { |
| 628 | const delimiter = this.delimiter; |
nothing calls this directly
no test coverage detected