(event, handler, opts)
| 92364 | this._addEventHandler(event, handler, opts, true); |
| 92365 | } |
| 92366 | watch(event, handler, opts) { |
| 92367 | this._addEventHandler(event, handler, opts, false, true); |
| 92368 | } |
| 92369 | off(event, handler) { |
| 92370 | this._removeEventHandler(event, handler); |
| 92371 | } |
nothing calls this directly
no test coverage detected