(workInProgress)
| 10704 | |
| 10705 | |
| 10706 | function markUpdate(workInProgress) { |
| 10707 | // Tag the fiber with an update effect. This turns a Placement into |
| 10708 | // an UpdateAndPlacement. |
| 10709 | workInProgress.effectTag |= Update; |
| 10710 | } |
| 10711 | |
| 10712 | function markRef(workInProgress) { |
| 10713 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected