(root, recoverableErrors, transitions)
| 26720 | } |
| 26721 | |
| 26722 | function commitRoot(root, recoverableErrors, transitions) { |
| 26723 | // TODO: This no longer makes any sense. We already wrap the mutation and |
| 26724 | // layout phases. Should be able to remove. |
| 26725 | var previousUpdateLanePriority = getCurrentUpdatePriority(); |
| 26726 | var prevTransition = ReactCurrentBatchConfig$3.transition; |
| 26727 | |
| 26728 | try { |
| 26729 | ReactCurrentBatchConfig$3.transition = null; |
| 26730 | setCurrentUpdatePriority(DiscreteEventPriority); |
| 26731 | commitRootImpl(root, recoverableErrors, transitions, previousUpdateLanePriority); |
| 26732 | } finally { |
| 26733 | ReactCurrentBatchConfig$3.transition = prevTransition; |
| 26734 | setCurrentUpdatePriority(previousUpdateLanePriority); |
| 26735 | } |
| 26736 | |
| 26737 | return null; |
| 26738 | } |
| 26739 | |
| 26740 | function commitRootImpl(root, recoverableErrors, transitions, renderPriorityLevel) { |
| 26741 | do { |
no test coverage detected
searching dependent graphs…