()
| 687 | } |
| 688 | |
| 689 | _inputChange() { |
| 690 | if (!this._clearingValue && this._lastValue !== this.value) { |
| 691 | this._lastValue = this.value; |
| 692 | this.fireDecoratorEvent("change"); |
| 693 | } |
| 694 | } |
| 695 | |
| 696 | _onMobileInputKeydown(e: KeyboardEvent) { |
| 697 | if (!isEnter(e)) { |
no outgoing calls
no test coverage detected