(workInProgress, nextProps)
| 10624 | |
| 10625 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 10626 | function memoizeProps(workInProgress, nextProps) { |
| 10627 | workInProgress.memoizedProps = nextProps; |
| 10628 | } |
| 10629 | |
| 10630 | function memoizeState(workInProgress, nextState) { |
| 10631 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected