(current, workInProgress)
| 10166 | } |
| 10167 | |
| 10168 | function updateHostText(current, workInProgress) { |
| 10169 | if (current === null) { |
| 10170 | tryToClaimNextHydratableInstance(workInProgress); |
| 10171 | } |
| 10172 | var nextProps = workInProgress.pendingProps; |
| 10173 | memoizeProps(workInProgress, nextProps); |
| 10174 | // Nothing to do here. This is terminal. We'll do the completion step |
| 10175 | // immediately after. |
| 10176 | return null; |
| 10177 | } |
| 10178 | |
| 10179 | function mountIndeterminateComponent(current, workInProgress, renderExpirationTime) { |
| 10180 | !(current === null) ? invariant(false, 'An indeterminate component should never have mounted. This error is likely caused by a bug in React. Please file an issue.') : void 0; |
no test coverage detected