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