( root, recoverableErrors, transitions, didIncludeRenderPhaseUpdate, spawnedLane, updatedLanes, suspendedRetryLanes, suspendedCommitReason, completedRenderStartTime, completedRenderEndTime )
| 14517 | workInProgress = null; |
| 14518 | } |
| 14519 | function commitRoot( |
| 14520 | root, |
| 14521 | recoverableErrors, |
| 14522 | transitions, |
| 14523 | didIncludeRenderPhaseUpdate, |
| 14524 | spawnedLane, |
| 14525 | updatedLanes, |
| 14526 | suspendedRetryLanes, |
| 14527 | suspendedCommitReason, |
| 14528 | completedRenderStartTime, |
| 14529 | completedRenderEndTime |
| 14530 | ) { |
| 14531 | var prevTransition = ReactSharedInternals.T, |
| 14532 | previousUpdateLanePriority = ReactDOMSharedInternals.p; |
| 14533 | try { |
| 14534 | (ReactDOMSharedInternals.p = 2), |
| 14535 | (ReactSharedInternals.T = null), |
| 14536 | commitRootImpl( |
| 14537 | root, |
| 14538 | recoverableErrors, |
| 14539 | transitions, |
| 14540 | didIncludeRenderPhaseUpdate, |
| 14541 | previousUpdateLanePriority, |
| 14542 | spawnedLane, |
| 14543 | updatedLanes, |
| 14544 | suspendedRetryLanes, |
| 14545 | suspendedCommitReason, |
| 14546 | completedRenderStartTime, |
| 14547 | completedRenderEndTime |
| 14548 | ); |
| 14549 | } finally { |
| 14550 | (ReactSharedInternals.T = prevTransition), |
| 14551 | (ReactDOMSharedInternals.p = previousUpdateLanePriority); |
| 14552 | } |
| 14553 | } |
| 14554 | function commitRootImpl( |
| 14555 | root, |
| 14556 | recoverableErrors, |
no test coverage detected
searching dependent graphs…