(error: Error, message: string, detail: object = {})
| 49 | // Error handling |
| 50 | |
| 51 | handleError(error: Error, message: string, detail: object = {}) { |
| 52 | this.application.handleError(error, `Error ${message}`, detail) |
| 53 | } |
| 54 | |
| 55 | private clearEventListenersForBinding(binding: Binding) { |
| 56 | const eventListener = this.fetchEventListenerForBinding(binding) |
nothing calls this directly
no test coverage detected