({ isSuccess })
| 289 | }, |
| 290 | |
| 291 | exit({ isSuccess }) { |
| 292 | if (this.linkHintsMode != null) { |
| 293 | this.linkHintsMode.deactivateMode(); |
| 294 | } |
| 295 | while (this.onExit.length > 0) { |
| 296 | this.onExit.pop()(isSuccess); |
| 297 | } |
| 298 | this.linkHintsMode = this.localHints = null; |
| 299 | }, |
| 300 | |
| 301 | mouseOutOfLastClickedElement() { |
| 302 | if (this.lastClickedElementRef == null) return; |
nothing calls this directly
no test coverage detected