(workInProgress)
| 10439 | |
| 10440 | |
| 10441 | function markUpdate(workInProgress) { |
| 10442 | // Tag the fiber with an update effect. This turns a Placement into |
| 10443 | // an UpdateAndPlacement. |
| 10444 | workInProgress.effectTag |= Update; |
| 10445 | } |
| 10446 | |
| 10447 | function markRef(workInProgress) { |
| 10448 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected