(workInProgress, nextState)
| 10490 | } |
| 10491 | |
| 10492 | function memoizeState(workInProgress, nextState) { |
| 10493 | workInProgress.memoizedState = nextState; |
| 10494 | // Don't reset the updateQueue, in case there are pending updates. Resetting |
| 10495 | // is handled by processUpdateQueue. |
| 10496 | } |
| 10497 | |
| 10498 | function beginWork(current, workInProgress, renderExpirationTime) { |
| 10499 | if (workInProgress.expirationTime === NoWork || workInProgress.expirationTime > renderExpirationTime) { |
no outgoing calls
no test coverage detected