(current, workInProgress)
| 10211 | } |
| 10212 | |
| 10213 | function updateHostText(current, workInProgress) { |
| 10214 | if (current === null) { |
| 10215 | tryToClaimNextHydratableInstance(workInProgress); |
| 10216 | } |
| 10217 | var nextProps = workInProgress.pendingProps; |
| 10218 | memoizeProps(workInProgress, nextProps); |
| 10219 | // Nothing to do here. This is terminal. We'll do the completion step |
| 10220 | // immediately after. |
| 10221 | return null; |
| 10222 | } |
| 10223 | |
| 10224 | function mountIndeterminateComponent(current, workInProgress, renderExpirationTime) { |
| 10225 | !(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