(workInProgress)
| 10560 | |
| 10561 | |
| 10562 | function markUpdate(workInProgress) { |
| 10563 | // Tag the fiber with an update effect. This turns a Placement into |
| 10564 | // an UpdateAndPlacement. |
| 10565 | workInProgress.effectTag |= Update; |
| 10566 | } |
| 10567 | |
| 10568 | function markRef(workInProgress) { |
| 10569 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected