( domEventName, eventSystemFlags, container, nativeEvent )
| 17951 | } |
| 17952 | var _enabled = !0; |
| 17953 | function dispatchDiscreteEvent( |
| 17954 | domEventName, |
| 17955 | eventSystemFlags, |
| 17956 | container, |
| 17957 | nativeEvent |
| 17958 | ) { |
| 17959 | var prevTransition = ReactSharedInternals.T; |
| 17960 | ReactSharedInternals.T = null; |
| 17961 | var previousPriority = ReactDOMSharedInternals.p; |
| 17962 | try { |
| 17963 | (ReactDOMSharedInternals.p = 2), |
| 17964 | dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent); |
| 17965 | } finally { |
| 17966 | (ReactDOMSharedInternals.p = previousPriority), |
| 17967 | (ReactSharedInternals.T = prevTransition); |
| 17968 | } |
| 17969 | } |
| 17970 | function dispatchContinuousEvent( |
| 17971 | domEventName, |
| 17972 | eventSystemFlags, |
nothing calls this directly
no test coverage detected
searching dependent graphs…