(eventName: string)
| 490 | } |
| 491 | |
| 492 | public _emit(eventName: string): void { |
| 493 | this.notify({ eventName, object: this }); |
| 494 | } |
| 495 | |
| 496 | private _getEventList(eventName: string, createIfNeeded?: boolean): Array<ListenerEntry> | undefined { |
| 497 | if (!eventName) { |