(elt, onFeature)
| 2690 | }); |
| 2691 | } |
| 2692 | getEventQueueFor(elt, onFeature) { |
| 2693 | let internalData = this.getInternalData(elt); |
| 2694 | var eventQueuesForElt = internalData.eventQueues; |
| 2695 | if (eventQueuesForElt == null) { |
| 2696 | eventQueuesForElt = /* @__PURE__ */ new Map(); |
| 2697 | internalData.eventQueues = eventQueuesForElt; |
| 2698 | } |
| 2699 | var eventQueueForFeature = eventQueuesForElt.get(onFeature); |
| 2700 | if (eventQueueForFeature == null) { |
| 2701 | eventQueueForFeature = { queue: [], executing: false }; |
| 2702 | eventQueuesForElt.set(onFeature, eventQueueForFeature); |
| 2703 | } |
| 2704 | return eventQueueForFeature; |
| 2705 | } |
| 2706 | // ================================================================= |
| 2707 | // DOM initialization |
| 2708 | // ================================================================= |
no test coverage detected