(domEventName, eventSystemFlags, container, nativeEvent)
| 6431 | } |
| 6432 | |
| 6433 | function dispatchDiscreteEvent(domEventName, eventSystemFlags, container, nativeEvent) { |
| 6434 | var previousPriority = getCurrentUpdatePriority(); |
| 6435 | var prevTransition = ReactCurrentBatchConfig.transition; |
| 6436 | ReactCurrentBatchConfig.transition = null; |
| 6437 | |
| 6438 | try { |
| 6439 | setCurrentUpdatePriority(DiscreteEventPriority); |
| 6440 | dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent); |
| 6441 | } finally { |
| 6442 | setCurrentUpdatePriority(previousPriority); |
| 6443 | ReactCurrentBatchConfig.transition = prevTransition; |
| 6444 | } |
| 6445 | } |
| 6446 | |
| 6447 | function dispatchContinuousEvent(domEventName, eventSystemFlags, container, nativeEvent) { |
| 6448 | var previousPriority = getCurrentUpdatePriority(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…