From 634cc52e6174b506dee79d908f50ce1ee19f4fbf Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Sun, 28 Mar 2021 18:51:11 -0500 Subject: [PATCH] Delete dead variable: currentEventWipLanes (#21123) No longer used anywhere. --- .../src/ReactFiberWorkLoop.new.js | 33 +++++-------------- .../src/ReactFiberWorkLoop.old.js | 33 +++++-------------- 2 files changed, 16 insertions(+), 50 deletions(-) diff --git a/packages/react-reconciler/src/ReactFiberWorkLoop.new.js b/packages/react-reconciler/src/ReactFiberWorkLoop.new.js index e16a1405b871e..1cff8db1fe654 100644 --- a/packages/react-reconciler/src/ReactFiberWorkLoop.new.js +++ b/packages/react-reconciler/src/ReactFiberWorkLoop.new.js @@ -350,7 +350,6 @@ let spawnedWorkDuringRender: null | Array = null; // event times as simultaneous, even if the actual clock time has advanced // between the first and second call. let currentEventTime: number = NoTimestamp; -let currentEventWipLanes: Lanes = NoLanes; let currentEventTransitionLane: Lanes = NoLanes; // Dev only flag that tracks if passive effects are currently being flushed. @@ -402,27 +401,17 @@ export function requestUpdateLane(fiber: Fiber): Lane { return pickArbitraryLane(workInProgressRootRenderLanes); } - // The algorithm for assigning an update to a lane should be stable for all - // updates at the same priority within the same event. To do this, the inputs - // to the algorithm must be the same. For example, we use the `renderLanes` - // to avoid choosing a lane that is already in the middle of rendering. - // - // However, the "included" lanes could be mutated in between updates in the - // same event, like if you perform an update inside `flushSync`. Or any other - // code path that might call `prepareFreshStack`. - // - // The trick we use is to cache the first of each of these inputs within an - // event. Then reset the cached values once we can be sure the event is over. - // Our heuristic for that is whenever we enter a concurrent work loop. - // - // We'll do the same for `currentEventTransitionLane` below. - if (currentEventWipLanes === NoLanes) { - currentEventWipLanes = workInProgressRootIncludedLanes; - } - const isTransition = requestCurrentTransition() !== NoTransition; if (isTransition) { + // The algorithm for assigning an update to a lane should be stable for all + // updates at the same priority within the same event. To do this, the + // inputs to the algorithm must be the same. + // + // The trick we use is to cache the first of each of these inputs within an + // event. Then reset the cached values once we can be sure the event is + // over. Our heuristic for that is whenever we enter a concurrent work loop. if (currentEventTransitionLane === NoLane) { + // All transitions within the same event are assigned the same lane. currentEventTransitionLane = claimNextTransitionLane(); } return currentEventTransitionLane; @@ -460,11 +449,6 @@ function requestRetryLane(fiber: Fiber) { return (SyncLane: Lane); } - // See `requestUpdateLane` for explanation of `currentEventWipLanes` - if (currentEventWipLanes === NoLanes) { - currentEventWipLanes = workInProgressRootIncludedLanes; - } - return claimNextRetryLane(); } @@ -748,7 +732,6 @@ function performConcurrentWorkOnRoot(root, didTimeout) { // Since we know we're in a React event, we can clear the current // event time. The next update will compute a new event time. currentEventTime = NoTimestamp; - currentEventWipLanes = NoLanes; currentEventTransitionLane = NoLanes; invariant( diff --git a/packages/react-reconciler/src/ReactFiberWorkLoop.old.js b/packages/react-reconciler/src/ReactFiberWorkLoop.old.js index 9446db83ca08e..98f4d119e4088 100644 --- a/packages/react-reconciler/src/ReactFiberWorkLoop.old.js +++ b/packages/react-reconciler/src/ReactFiberWorkLoop.old.js @@ -350,7 +350,6 @@ let spawnedWorkDuringRender: null | Array = null; // event times as simultaneous, even if the actual clock time has advanced // between the first and second call. let currentEventTime: number = NoTimestamp; -let currentEventWipLanes: Lanes = NoLanes; let currentEventTransitionLane: Lanes = NoLanes; // Dev only flag that tracks if passive effects are currently being flushed. @@ -402,27 +401,17 @@ export function requestUpdateLane(fiber: Fiber): Lane { return pickArbitraryLane(workInProgressRootRenderLanes); } - // The algorithm for assigning an update to a lane should be stable for all - // updates at the same priority within the same event. To do this, the inputs - // to the algorithm must be the same. For example, we use the `renderLanes` - // to avoid choosing a lane that is already in the middle of rendering. - // - // However, the "included" lanes could be mutated in between updates in the - // same event, like if you perform an update inside `flushSync`. Or any other - // code path that might call `prepareFreshStack`. - // - // The trick we use is to cache the first of each of these inputs within an - // event. Then reset the cached values once we can be sure the event is over. - // Our heuristic for that is whenever we enter a concurrent work loop. - // - // We'll do the same for `currentEventTransitionLane` below. - if (currentEventWipLanes === NoLanes) { - currentEventWipLanes = workInProgressRootIncludedLanes; - } - const isTransition = requestCurrentTransition() !== NoTransition; if (isTransition) { + // The algorithm for assigning an update to a lane should be stable for all + // updates at the same priority within the same event. To do this, the + // inputs to the algorithm must be the same. + // + // The trick we use is to cache the first of each of these inputs within an + // event. Then reset the cached values once we can be sure the event is + // over. Our heuristic for that is whenever we enter a concurrent work loop. if (currentEventTransitionLane === NoLane) { + // All transitions within the same event are assigned the same lane. currentEventTransitionLane = claimNextTransitionLane(); } return currentEventTransitionLane; @@ -460,11 +449,6 @@ function requestRetryLane(fiber: Fiber) { return (SyncLane: Lane); } - // See `requestUpdateLane` for explanation of `currentEventWipLanes` - if (currentEventWipLanes === NoLanes) { - currentEventWipLanes = workInProgressRootIncludedLanes; - } - return claimNextRetryLane(); } @@ -748,7 +732,6 @@ function performConcurrentWorkOnRoot(root, didTimeout) { // Since we know we're in a React event, we can clear the current // event time. The next update will compute a new event time. currentEventTime = NoTimestamp; - currentEventWipLanes = NoLanes; currentEventTransitionLane = NoLanes; invariant(