(workInProgress)
| 9896 | |
| 9897 | |
| 9898 | function markUpdate(workInProgress) { |
| 9899 | // Tag the fiber with an update effect. This turns a Placement into |
| 9900 | // an UpdateAndPlacement. |
| 9901 | workInProgress.effectTag |= Update; |
| 9902 | } |
| 9903 | |
| 9904 | function markRef(workInProgress) { |
| 9905 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected