(workInProgress, nextState)
| 9851 | } |
| 9852 | |
| 9853 | function memoizeState(workInProgress, nextState) { |
| 9854 | workInProgress.memoizedState = nextState; |
| 9855 | // Don't reset the updateQueue, in case there are pending updates. Resetting |
| 9856 | // is handled by processUpdateQueue. |
| 9857 | } |
| 9858 | |
| 9859 | function beginWork(current, workInProgress, renderExpirationTime) { |
| 9860 | if (workInProgress.expirationTime === NoWork || workInProgress.expirationTime > renderExpirationTime) { |
no outgoing calls
no test coverage detected