(e: KeyboardEvent)
| 1022 | } |
| 1023 | |
| 1024 | _handleHome(e: KeyboardEvent) { |
| 1025 | const shouldMoveForward = isInstanceOfComboBoxItemGroup(this._filteredItems[0]) && !this.open; |
| 1026 | |
| 1027 | this._handleItemNavigation(e, 0, shouldMoveForward); |
| 1028 | } |
| 1029 | |
| 1030 | _handleEnd(e: KeyboardEvent) { |
| 1031 | this._handleItemNavigation(e, this._getItems().length - 1, true /* isForward */); |
nothing calls this directly
no test coverage detected