(workInProgress)
| 22406 | } |
| 22407 | |
| 22408 | function markUpdate(workInProgress) { |
| 22409 | // Tag the fiber with an update effect. This turns a Placement into |
| 22410 | // a PlacementAndUpdate. |
| 22411 | workInProgress.effectTag |= Update; |
| 22412 | } |
| 22413 | |
| 22414 | function markRef$1(workInProgress) { |
| 22415 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected