(workInProgress, nextProps)
| 9847 | |
| 9848 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 9849 | function memoizeProps(workInProgress, nextProps) { |
| 9850 | workInProgress.memoizedProps = nextProps; |
| 9851 | } |
| 9852 | |
| 9853 | function memoizeState(workInProgress, nextState) { |
| 9854 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected