(workInProgress, nextProps)
| 9810 | |
| 9811 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 9812 | function memoizeProps(workInProgress, nextProps) { |
| 9813 | workInProgress.memoizedProps = nextProps; |
| 9814 | } |
| 9815 | |
| 9816 | function memoizeState(workInProgress, nextState) { |
| 9817 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected