(current, workInProgress)
| 9403 | } |
| 9404 | |
| 9405 | function updateHostText(current, workInProgress) { |
| 9406 | if (current === null) { |
| 9407 | tryToClaimNextHydratableInstance(workInProgress); |
| 9408 | } |
| 9409 | var nextProps = workInProgress.pendingProps; |
| 9410 | memoizeProps(workInProgress, nextProps); |
| 9411 | // Nothing to do here. This is terminal. We'll do the completion step |
| 9412 | // immediately after. |
| 9413 | return null; |
| 9414 | } |
| 9415 | |
| 9416 | function mountIndeterminateComponent(current, workInProgress, renderExpirationTime) { |
| 9417 | !(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