(current, workInProgress)
| 9306 | } |
| 9307 | |
| 9308 | function updateHostText(current, workInProgress) { |
| 9309 | if (current === null) { |
| 9310 | tryToClaimNextHydratableInstance(workInProgress); |
| 9311 | } |
| 9312 | var nextProps = workInProgress.pendingProps; |
| 9313 | memoizeProps(workInProgress, nextProps); |
| 9314 | // Nothing to do here. This is terminal. We'll do the completion step |
| 9315 | // immediately after. |
| 9316 | return null; |
| 9317 | } |
| 9318 | |
| 9319 | function mountIndeterminateComponent(current, workInProgress, renderExpirationTime) { |
| 9320 | !(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