* Parses formatted number string back to numeric value * @private
(formattedValue: string)
| 607 | * @private |
| 608 | */ |
| 609 | _parseNumber(formattedValue: string): number { |
| 610 | return this.formatter.parse(formattedValue) as number; |
| 611 | } |
| 612 | |
| 613 | _incValue() { |
| 614 | if (this._incIconClickable && !this.disabled && !this.readonly) { |
no test coverage detected