(workInProgress)
| 10566 | |
| 10567 | |
| 10568 | function markUpdate(workInProgress) { |
| 10569 | // Tag the fiber with an update effect. This turns a Placement into |
| 10570 | // an UpdateAndPlacement. |
| 10571 | workInProgress.effectTag |= Update; |
| 10572 | } |
| 10573 | |
| 10574 | function markRef(workInProgress) { |
| 10575 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected