(workInProgress)
| 9890 | |
| 9891 | |
| 9892 | function markUpdate(workInProgress) { |
| 9893 | // Tag the fiber with an update effect. This turns a Placement into |
| 9894 | // an UpdateAndPlacement. |
| 9895 | workInProgress.effectTag |= Update; |
| 9896 | } |
| 9897 | |
| 9898 | function markRef(workInProgress) { |
| 9899 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected