(event)
| 53 | exitOnClick: true, |
| 54 | // Always truthy, so always continues bubbling. |
| 55 | keydown(event) { |
| 56 | return InsertMode.suppressEvent(event); |
| 57 | }, |
| 58 | keypress(event) { |
| 59 | return InsertMode.suppressEvent(event); |
| 60 | }, |
nothing calls this directly
no test coverage detected