(root)
| 21937 | } |
| 21938 | |
| 21939 | function finishSyncRender(root) { |
| 21940 | // Set this to null to indicate there's no in-progress render. |
| 21941 | workInProgressRoot = null; |
| 21942 | commitRoot(root); |
| 21943 | } |
| 21944 | function flushDiscreteUpdates() { |
| 21945 | // TODO: Should be able to flush inside batchedUpdates, but not inside `act`. |
| 21946 | // However, `act` uses `batchedUpdates`, so there's no way to distinguish |
no test coverage detected