(current, workInProgress)
| 9124 | return null; |
| 9125 | } |
| 9126 | function markRef(current, workInProgress) { |
| 9127 | var ref = workInProgress.ref; |
| 9128 | if (null === ref) |
| 9129 | null !== current && |
| 9130 | null !== current.ref && |
| 9131 | (workInProgress.flags |= 2097664); |
| 9132 | else { |
| 9133 | if ("function" !== typeof ref && "object" !== typeof ref) |
| 9134 | throw Error(formatProdErrorMessage(284)); |
| 9135 | if (null === current || current.ref !== ref) |
| 9136 | workInProgress.flags |= 2097664; |
| 9137 | } |
| 9138 | } |
| 9139 | function updateFunctionComponent( |
| 9140 | current, |
| 9141 | workInProgress, |
no test coverage detected
searching dependent graphs…