(workInProgress, nextProps)
| 10521 | |
| 10522 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 10523 | function memoizeProps(workInProgress, nextProps) { |
| 10524 | workInProgress.memoizedProps = nextProps; |
| 10525 | } |
| 10526 | |
| 10527 | function memoizeState(workInProgress, nextState) { |
| 10528 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected