(workInProgress)
| 10601 | |
| 10602 | |
| 10603 | function markUpdate(workInProgress) { |
| 10604 | // Tag the fiber with an update effect. This turns a Placement into |
| 10605 | // an UpdateAndPlacement. |
| 10606 | workInProgress.effectTag |= Update; |
| 10607 | } |
| 10608 | |
| 10609 | function markRef(workInProgress) { |
| 10610 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected