()
| 1373 | } |
| 1374 | |
| 1375 | _fireChangeEvent() { |
| 1376 | if (this.value !== this._lastValue) { |
| 1377 | this.fireDecoratorEvent("change"); |
| 1378 | this._lastValue = this.value; |
| 1379 | } |
| 1380 | } |
| 1381 | |
| 1382 | _inputChange(e: Event) { |
| 1383 | e.preventDefault(); |
no outgoing calls
no test coverage detected