(workInProgress, nextProps)
| 10579 | |
| 10580 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 10581 | function memoizeProps(workInProgress, nextProps) { |
| 10582 | workInProgress.memoizedProps = nextProps; |
| 10583 | } |
| 10584 | |
| 10585 | function memoizeState(workInProgress, nextState) { |
| 10586 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected