(workInProgress, nextProps)
| 9719 | |
| 9720 | // TODO: Delete memoizeProps/State and move to reconcile/bailout instead |
| 9721 | function memoizeProps(workInProgress, nextProps) { |
| 9722 | workInProgress.memoizedProps = nextProps; |
| 9723 | } |
| 9724 | |
| 9725 | function memoizeState(workInProgress, nextState) { |
| 9726 | workInProgress.memoizedState = nextState; |
no outgoing calls
no test coverage detected