(workInProgress, nextState)
| 9814 | } |
| 9815 | |
| 9816 | function memoizeState(workInProgress, nextState) { |
| 9817 | workInProgress.memoizedState = nextState; |
| 9818 | // Don't reset the updateQueue, in case there are pending updates. Resetting |
| 9819 | // is handled by processUpdateQueue. |
| 9820 | } |
| 9821 | |
| 9822 | function beginWork(current, workInProgress, renderExpirationTime) { |
| 9823 | if (workInProgress.expirationTime === NoWork || workInProgress.expirationTime > renderExpirationTime) { |
no outgoing calls
no test coverage detected