* Tag the fiber with an update effect. This turns a Placement into * a PlacementAndUpdate.
(workInProgress: Fiber)
| 195 | * a PlacementAndUpdate. |
| 196 | */ |
| 197 | function markUpdate(workInProgress: Fiber) { |
| 198 | workInProgress.flags |= Update; |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Tag the fiber with Cloned in persistent mode to signal that |
no outgoing calls
no test coverage detected