(topLevelType, eventSystemFlags, container, nativeEvent)
| 4287 | } |
| 4288 | |
| 4289 | function dispatchDiscreteEvent(topLevelType, eventSystemFlags, container, nativeEvent) { |
| 4290 | flushDiscreteUpdatesIfNeeded(nativeEvent.timeStamp); |
| 4291 | discreteUpdates(dispatchEvent, topLevelType, eventSystemFlags, container, nativeEvent); |
| 4292 | } |
| 4293 | |
| 4294 | function dispatchUserBlockingUpdate(topLevelType, eventSystemFlags, container, nativeEvent) { |
| 4295 | runWithPriority(UserBlockingPriority, dispatchEvent.bind(null, topLevelType, eventSystemFlags, container, nativeEvent)); |
nothing calls this directly
no test coverage detected