(root)
| 14820 | isFlushingWork = !1, |
| 14821 | currentEventTransitionLane = 0; |
| 14822 | function ensureRootIsScheduled(root) { |
| 14823 | root !== lastScheduledRoot && |
| 14824 | null === root.next && |
| 14825 | (null === lastScheduledRoot |
| 14826 | ? (firstScheduledRoot = lastScheduledRoot = root) |
| 14827 | : (lastScheduledRoot = lastScheduledRoot.next = root)); |
| 14828 | mightHavePendingSyncWork = !0; |
| 14829 | didScheduleMicrotask || |
| 14830 | ((didScheduleMicrotask = !0), |
| 14831 | scheduleImmediateTask(processRootScheduleInMicrotask)); |
| 14832 | } |
| 14833 | function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { |
| 14834 | if (!isFlushingWork && mightHavePendingSyncWork) { |
| 14835 | isFlushingWork = !0; |
no test coverage detected
searching dependent graphs…