(workInProgress, nextState)
| 10628 | } |
| 10629 | |
| 10630 | function memoizeState(workInProgress, nextState) { |
| 10631 | workInProgress.memoizedState = nextState; |
| 10632 | // Don't reset the updateQueue, in case there are pending updates. Resetting |
| 10633 | // is handled by processUpdateQueue. |
| 10634 | } |
| 10635 | |
| 10636 | function beginWork(current, workInProgress, renderExpirationTime) { |
| 10637 | if (workInProgress.expirationTime === NoWork || workInProgress.expirationTime > renderExpirationTime) { |
no outgoing calls
no test coverage detected