(workInProgress)
| 9799 | |
| 9800 | |
| 9801 | function markUpdate(workInProgress) { |
| 9802 | // Tag the fiber with an update effect. This turns a Placement into |
| 9803 | // an UpdateAndPlacement. |
| 9804 | workInProgress.effectTag |= Update; |
| 9805 | } |
| 9806 | |
| 9807 | function markRef(workInProgress) { |
| 9808 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected