(workInProgress, nextState)
| 10583 | } |
| 10584 | |
| 10585 | function memoizeState(workInProgress, nextState) { |
| 10586 | workInProgress.memoizedState = nextState; |
| 10587 | // Don't reset the updateQueue, in case there are pending updates. Resetting |
| 10588 | // is handled by processUpdateQueue. |
| 10589 | } |
| 10590 | |
| 10591 | function beginWork(current, workInProgress, renderExpirationTime) { |
| 10592 | if (workInProgress.expirationTime === NoWork || workInProgress.expirationTime > renderExpirationTime) { |
no outgoing calls
no test coverage detected