(workInProgress, nextProps)
| 10359 | |
| 10360 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 10361 | function memoizeProps(workInProgress, nextProps) { |
| 10362 | workInProgress.memoizedProps = nextProps; |
| 10363 | } |
| 10364 | |
| 10365 | function memoizeState(workInProgress, nextState) { |
| 10366 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected