(workInProgress)
| 18846 | } |
| 18847 | |
| 18848 | function markUpdate(workInProgress) { |
| 18849 | // Tag the fiber with an update effect. This turns a Placement into |
| 18850 | // a PlacementAndUpdate. |
| 18851 | workInProgress.effectTag |= Update; |
| 18852 | } |
| 18853 | |
| 18854 | function markRef$1(workInProgress) { |
| 18855 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected