(root: FiberRootNode, lane: Lane)
| 147 | } |
| 148 | |
| 149 | export function markRootUpdated(root: FiberRootNode, lane: Lane) { |
| 150 | root.pendingLanes = mergeLanes(root.pendingLanes, lane); |
| 151 | } |
| 152 | |
| 153 | export function markUpdateLaneFromFiberToRoot(fiber: FiberNode, lane: Lane) { |
| 154 | let node = fiber; |
no test coverage detected