(workInProgress)
| 10659 | |
| 10660 | |
| 10661 | function markUpdate(workInProgress) { |
| 10662 | // Tag the fiber with an update effect. This turns a Placement into |
| 10663 | // an UpdateAndPlacement. |
| 10664 | workInProgress.effectTag |= Update; |
| 10665 | } |
| 10666 | |
| 10667 | function markRef(workInProgress) { |
| 10668 | workInProgress.effectTag |= Ref; |
no outgoing calls
no test coverage detected