(workInProgress, nextProps)
| 10486 | |
| 10487 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 10488 | function memoizeProps(workInProgress, nextProps) { |
| 10489 | workInProgress.memoizedProps = nextProps; |
| 10490 | } |
| 10491 | |
| 10492 | function memoizeState(workInProgress, nextState) { |
| 10493 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected