(elt, onFeature)
| 2701 | }); |
| 2702 | } |
| 2703 | getEventQueueFor(elt, onFeature) { |
| 2704 | let internalData = this.getInternalData(elt); |
| 2705 | var eventQueuesForElt = internalData.eventQueues; |
| 2706 | if (eventQueuesForElt == null) { |
| 2707 | eventQueuesForElt = /* @__PURE__ */ new Map(); |
| 2708 | internalData.eventQueues = eventQueuesForElt; |
| 2709 | } |
| 2710 | var eventQueueForFeature = eventQueuesForElt.get(onFeature); |
| 2711 | if (eventQueueForFeature == null) { |
| 2712 | eventQueueForFeature = { queue: [], executing: false }; |
| 2713 | eventQueuesForElt.set(onFeature, eventQueueForFeature); |
| 2714 | } |
| 2715 | return eventQueueForFeature; |
| 2716 | } |
| 2717 | // ================================================================= |
| 2718 | // DOM initialization |
| 2719 | // ================================================================= |
no test coverage detected