()
| 519 | } |
| 520 | |
| 521 | _setButtonState() { |
| 522 | this._decIconDisabled = this.min !== undefined && this.value <= this.min; |
| 523 | this._incIconDisabled = this.max !== undefined && this.value >= this.max; |
| 524 | } |
| 525 | |
| 526 | _validate() { |
| 527 | if (this._initialValueState === undefined) { |
no outgoing calls
no test coverage detected