(root)
| 25497 | } |
| 25498 | |
| 25499 | function finishSyncRender(root) { |
| 25500 | // Set this to null to indicate there's no in-progress render. |
| 25501 | workInProgressRoot = null; |
| 25502 | commitRoot(root); |
| 25503 | } |
| 25504 | function flushDiscreteUpdates() { |
| 25505 | // TODO: Should be able to flush inside batchedUpdates, but not inside `act`. |
| 25506 | // However, `act` uses `batchedUpdates`, so there's no way to distinguish |
no test coverage detected