(workInProgress, nextProps)
| 10480 | |
| 10481 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 10482 | function memoizeProps(workInProgress, nextProps) { |
| 10483 | workInProgress.memoizedProps = nextProps; |
| 10484 | } |
| 10485 | |
| 10486 | function memoizeState(workInProgress, nextState) { |
| 10487 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected