(workInProgress)
| 10817 | |
| 10818 | |
| 10819 | function markUpdate(workInProgress) { |
| 10820 | // Tag the fiber with an update effect. This turns a Placement into |
| 10821 | // an UpdateAndPlacement. |
| 10822 | workInProgress.effectTag |= Update; |
| 10823 | } |
| 10824 | |
| 10825 | function markRef(workInProgress) { |
| 10826 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected