(callback)
| 68 | } |
| 69 | |
| 70 | handleInput(callback) { |
| 71 | try { |
| 72 | this.delegate?.inputControllerWillHandleInput() |
| 73 | callback.call(this) |
| 74 | } finally { |
| 75 | this.delegate?.inputControllerDidHandleInput() |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | createLinkHTML(href, text) { |
| 80 | const link = document.createElement("a") |
no test coverage detected