(scheduler2)
| 20936 | } |
| 20937 | class TooltipManager { |
| 20938 | constructor(scheduler2) { |
| 20939 | this._listeners = {}; |
| 20940 | this.tooltip = new Tooltip(scheduler2); |
| 20941 | this._scheduler = scheduler2; |
| 20942 | this._domEvents = scheduler2._createDomEventScope(); |
| 20943 | this._initDelayedFunctions(); |
| 20944 | } |
| 20945 | destructor() { |
| 20946 | this.tooltip.hide(); |
| 20947 | this._domEvents.detachAll(); |
nothing calls this directly
no test coverage detected