(t, e)
| 14432 | i[t].handler.call(this._obj, e, r); |
| 14433 | } |
| 14434 | on(t, e) { |
| 14435 | const n = this.eventName(t), |
| 14436 | r = this._handlers; |
| 14437 | return ( |
| 14438 | this._handlerIndex(r[n], t, e) < 0 && |
| 14439 | (Tv(this, t), (r[n] || (r[n] = [])).push({ type: t, handler: e })), |
| 14440 | this |
| 14441 | ); |
| 14442 | } |
| 14443 | off(t, e) { |
| 14444 | const n = this.eventName(t), |
| 14445 | r = this._handlers[n], |
nothing calls this directly
no test coverage detected