(workInProgress, nextState)
| 10525 | } |
| 10526 | |
| 10527 | function memoizeState(workInProgress, nextState) { |
| 10528 | workInProgress.memoizedState = nextState; |
| 10529 | // Don't reset the updateQueue, in case there are pending updates. Resetting |
| 10530 | // is handled by processUpdateQueue. |
| 10531 | } |
| 10532 | |
| 10533 | function beginWork(current, workInProgress, renderExpirationTime) { |
| 10534 | if (workInProgress.expirationTime === NoWork || workInProgress.expirationTime > renderExpirationTime) { |
no outgoing calls
no test coverage detected