()
| 18401 | attemptReplayContinuousQueuedEvent(queuedEvent) && map.delete(key); |
| 18402 | } |
| 18403 | function replayUnblockedEvents() { |
| 18404 | hasScheduledReplayAttempt = !1; |
| 18405 | null !== queuedFocus && |
| 18406 | attemptReplayContinuousQueuedEvent(queuedFocus) && |
| 18407 | (queuedFocus = null); |
| 18408 | null !== queuedDrag && |
| 18409 | attemptReplayContinuousQueuedEvent(queuedDrag) && |
| 18410 | (queuedDrag = null); |
| 18411 | null !== queuedMouse && |
| 18412 | attemptReplayContinuousQueuedEvent(queuedMouse) && |
| 18413 | (queuedMouse = null); |
| 18414 | queuedPointers.forEach(attemptReplayContinuousQueuedEventInMap); |
| 18415 | queuedPointerCaptures.forEach(attemptReplayContinuousQueuedEventInMap); |
| 18416 | } |
| 18417 | function scheduleCallbackIfUnblocked(queuedEvent, unblocked) { |
| 18418 | queuedEvent.blockedOn === unblocked && |
| 18419 | ((queuedEvent.blockedOn = null), |
nothing calls this directly
no test coverage detected
searching dependent graphs…