(root, lanes)
| 26171 | } |
| 26172 | |
| 26173 | function flushRoot(root, lanes) { |
| 26174 | if (lanes !== NoLanes) { |
| 26175 | markRootEntangled(root, mergeLanes(lanes, SyncLane)); |
| 26176 | ensureRootIsScheduled(root, now()); |
| 26177 | |
| 26178 | if ((executionContext & (RenderContext | CommitContext)) === NoContext) { |
| 26179 | resetRenderTimer(); |
| 26180 | flushSyncCallbacks(); |
| 26181 | } |
| 26182 | } |
| 26183 | } |
| 26184 | function batchedUpdates$1(fn, a) { |
| 26185 | var prevExecutionContext = executionContext; |
| 26186 | executionContext |= BatchedContext; |
no test coverage detected
searching dependent graphs…