(workInProgress)
| 9927 | |
| 9928 | |
| 9929 | function markUpdate(workInProgress) { |
| 9930 | // Tag the fiber with an update effect. This turns a Placement into |
| 9931 | // an UpdateAndPlacement. |
| 9932 | workInProgress.effectTag |= Update; |
| 9933 | } |
| 9934 | |
| 9935 | function markRef(workInProgress) { |
| 9936 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected