(e: KeyboardEvent)
| 1028 | } |
| 1029 | |
| 1030 | _handleEnd(e: KeyboardEvent) { |
| 1031 | this._handleItemNavigation(e, this._getItems().length - 1, true /* isForward */); |
| 1032 | } |
| 1033 | |
| 1034 | _keyup() { |
| 1035 | this._userTypedValue = this.value.substring(0, this.inner.selectionStart || 0); |
nothing calls this directly
no test coverage detected