(workInProgress, nextProps)
| 9816 | |
| 9817 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 9818 | function memoizeProps(workInProgress, nextProps) { |
| 9819 | workInProgress.memoizedProps = nextProps; |
| 9820 | } |
| 9821 | |
| 9822 | function memoizeState(workInProgress, nextState) { |
| 9823 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected