( domEventName, eventSystemFlags, container, nativeEvent )
| 17968 | } |
| 17969 | } |
| 17970 | function dispatchContinuousEvent( |
| 17971 | domEventName, |
| 17972 | eventSystemFlags, |
| 17973 | container, |
| 17974 | nativeEvent |
| 17975 | ) { |
| 17976 | var prevTransition = ReactSharedInternals.T; |
| 17977 | ReactSharedInternals.T = null; |
| 17978 | var previousPriority = ReactDOMSharedInternals.p; |
| 17979 | try { |
| 17980 | (ReactDOMSharedInternals.p = 8), |
| 17981 | dispatchEvent(domEventName, eventSystemFlags, container, nativeEvent); |
| 17982 | } finally { |
| 17983 | (ReactDOMSharedInternals.p = previousPriority), |
| 17984 | (ReactSharedInternals.T = prevTransition); |
| 17985 | } |
| 17986 | } |
| 17987 | function dispatchEvent( |
| 17988 | domEventName, |
| 17989 | eventSystemFlags, |
nothing calls this directly
no test coverage detected
searching dependent graphs…