(event: Event)
| 29 | } |
| 30 | |
| 31 | handleEvent(event: Event) { |
| 32 | const actionEvent = this.prepareActionEvent(event) |
| 33 | if (this.willBeInvokedByEvent(event) && this.applyEventModifiers(actionEvent)) { |
| 34 | this.invokeWithEvent(actionEvent) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | get eventName(): string { |
| 39 | return this.action.eventName |
nothing calls this directly
no test coverage detected