@@ -2646,13 +2646,13 @@ function createChildReconciler(shouldTrackSideEffects) {
2646
2646
(currentFirstChild = currentFirstChild.sibling);
2647
2647
return null;
2648
2648
}
2649
- function mapRemainingChildren(returnFiber, currentFirstChild) {
2650
- for (returnFiber = new Map(); null !== currentFirstChild; )
2649
+ function mapRemainingChildren(currentFirstChild) {
2650
+ for (var existingChildren = new Map(); null !== currentFirstChild; )
2651
2651
null !== currentFirstChild.key
2652
- ? returnFiber .set(currentFirstChild.key, currentFirstChild)
2653
- : returnFiber .set(currentFirstChild.index, currentFirstChild),
2652
+ ? existingChildren .set(currentFirstChild.key, currentFirstChild)
2653
+ : existingChildren .set(currentFirstChild.index, currentFirstChild),
2654
2654
(currentFirstChild = currentFirstChild.sibling);
2655
- return returnFiber ;
2655
+ return existingChildren ;
2656
2656
}
2657
2657
function useFiber(fiber, pendingProps) {
2658
2658
fiber = createWorkInProgress(fiber, pendingProps);
@@ -3004,7 +3004,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3004
3004
return resultingFirstChild;
3005
3005
}
3006
3006
for (
3007
- oldFiber = mapRemainingChildren(returnFiber, oldFiber);
3007
+ oldFiber = mapRemainingChildren(oldFiber);
3008
3008
newIdx < newChildren.length;
3009
3009
newIdx++
3010
3010
)
@@ -3095,7 +3095,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3095
3095
return iteratorFn;
3096
3096
}
3097
3097
for (
3098
- oldFiber = mapRemainingChildren(returnFiber, oldFiber);
3098
+ oldFiber = mapRemainingChildren(oldFiber);
3099
3099
!step.done;
3100
3100
newIdx++, step = newChildrenIterable.next()
3101
3101
)
@@ -17237,7 +17237,7 @@ Internals.Events = [
17237
17237
var devToolsConfig$jscomp$inline_1822 = {
17238
17238
findFiberByHostInstance: getClosestInstanceFromNode,
17239
17239
bundleType: 0,
17240
- version: "18.3.0-www-classic-513335d7 ",
17240
+ version: "18.3.0-www-classic-caa15134 ",
17241
17241
rendererPackageName: "react-dom"
17242
17242
};
17243
17243
var internals$jscomp$inline_2181 = {
@@ -17267,7 +17267,7 @@ var internals$jscomp$inline_2181 = {
17267
17267
scheduleRoot: null,
17268
17268
setRefreshHandler: null,
17269
17269
getCurrentFiber: null,
17270
- reconcilerVersion: "18.3.0-www-classic-513335d7 "
17270
+ reconcilerVersion: "18.3.0-www-classic-caa15134 "
17271
17271
};
17272
17272
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
17273
17273
var hook$jscomp$inline_2182 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17598,4 +17598,4 @@ exports.useFormState = function (action, initialState, permalink) {
17598
17598
exports.useFormStatus = function () {
17599
17599
return ReactCurrentDispatcher$2.current.useHostTransitionStatus();
17600
17600
};
17601
- exports.version = "18.3.0-www-classic-513335d7 ";
17601
+ exports.version = "18.3.0-www-classic-caa15134 ";
0 commit comments