(root, lanes)
| 26132 | } |
| 26133 | |
| 26134 | function flushRoot(root, lanes) { |
| 26135 | if (lanes !== NoLanes) { |
| 26136 | markRootEntangled(root, mergeLanes(lanes, SyncLane)); |
| 26137 | ensureRootIsScheduled(root, now()); |
| 26138 | |
| 26139 | if ((executionContext & (RenderContext | CommitContext)) === NoContext) { |
| 26140 | resetRenderTimer(); |
| 26141 | flushSyncCallbacks(); |
| 26142 | } |
| 26143 | } |
| 26144 | } |
| 26145 | function batchedUpdates$1(fn, a) { |
| 26146 | var prevExecutionContext = executionContext; |
| 26147 | executionContext |= BatchedContext; |
no test coverage detected
searching dependent graphs…