(workInProgress, nextProps)
| 10737 | |
| 10738 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 10739 | function memoizeProps(workInProgress, nextProps) { |
| 10740 | workInProgress.memoizedProps = nextProps; |
| 10741 | } |
| 10742 | |
| 10743 | function memoizeState(workInProgress, nextState) { |
| 10744 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected