Handles keyboard events on the chip set.
(event: KeyboardEvent)
| 163 | |
| 164 | /** Handles keyboard events on the chip set. */ |
| 165 | _handleKeydown(event: KeyboardEvent) { |
| 166 | if (this._originatesFromChip(event)) { |
| 167 | this._keyManager.onKeydown(event); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | /** |
| 172 | * Utility to ensure all indexes are valid. |
nothing calls this directly
no test coverage detected