Skip to content

Commit ab9cbb6

Browse files
committed
[compiler] Avoid empty switch cases (#33625)
Small cosmetic win, found this when i was looking at some code internally with lots of cases that all share the same logic. Previously, all the but last one would have an empty block. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33625). * #33643 * #33642 * #33640 * __->__ #33625 * #33624 DiffTrain build for [e130c08](e130c08)
1 parent 608544b commit ab9cbb6

35 files changed

+94
-93
lines changed

compiled/eslint-plugin-react-hooks/index.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43992,12 +43992,9 @@ function codegenFunction(fn, { uniqueIdentifiers, fbtOperands, }) {
4399243992
}
4399343993
function codegenReactiveFunction(cx, fn) {
4399443994
for (const param of fn.params) {
43995-
if (param.kind === 'Identifier') {
43996-
cx.temp.set(param.identifier.declarationId, null);
43997-
}
43998-
else {
43999-
cx.temp.set(param.place.identifier.declarationId, null);
44000-
}
43995+
const place = param.kind === 'Identifier' ? param : param.place;
43996+
cx.temp.set(place.identifier.declarationId, null);
43997+
cx.declare(place.identifier);
4400143998
}
4400243999
const params = fn.params.map(param => convertParameter(param));
4400344000
const body = codegenBlock(cx, fn.body);
@@ -44549,7 +44546,7 @@ function codegenTerminal(cx, terminal) {
4454944546
? codegenPlaceToExpression(cx, case_.test)
4455044547
: null;
4455144548
const block = codegenBlock(cx, case_.block);
44552-
return libExports$1.switchCase(test, [block]);
44549+
return libExports$1.switchCase(test, block.body.length === 0 ? [] : [block]);
4455344550
}));
4455444551
}
4455544552
case 'throw': {
@@ -45628,6 +45625,10 @@ function compareScopeDeclaration(a, b) {
4562845625

4562945626
function extractScopeDeclarationsFromDestructuring(fn) {
4563045627
const state = new State$1(fn.env);
45628+
for (const param of fn.params) {
45629+
const place = param.kind === 'Identifier' ? param : param.place;
45630+
state.declared.add(place.identifier.declarationId);
45631+
}
4563145632
visitReactiveFunction(fn, new Visitor$9(), state);
4563245633
}
4563345634
let State$1 = class State {

compiled/facebook-www/REVISION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cee7939b0017ff58230e19663c22393bfd9025ef
1+
e130c08b06470b5fc4ec8095310d19e782924427
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cee7939b0017ff58230e19663c22393bfd9025ef
1+
e130c08b06470b5fc4ec8095310d19e782924427

compiled/facebook-www/React-dev.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,7 @@ __DEV__ &&
14791479
exports.useTransition = function () {
14801480
return resolveDispatcher().useTransition();
14811481
};
1482-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
1482+
exports.version = "19.2.0-www-classic-e130c08b-20250625";
14831483
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14841484
"function" ===
14851485
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-dev.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,7 @@ __DEV__ &&
14791479
exports.useTransition = function () {
14801480
return resolveDispatcher().useTransition();
14811481
};
1482-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
1482+
exports.version = "19.2.0-www-modern-e130c08b-20250625";
14831483
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
14841484
"function" ===
14851485
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-prod.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,4 +630,4 @@ exports.useSyncExternalStore = function (
630630
exports.useTransition = function () {
631631
return ReactSharedInternals.H.useTransition();
632632
};
633-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
633+
exports.version = "19.2.0-www-classic-e130c08b-20250625";

compiled/facebook-www/React-prod.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,4 +630,4 @@ exports.useSyncExternalStore = function (
630630
exports.useTransition = function () {
631631
return ReactSharedInternals.H.useTransition();
632632
};
633-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
633+
exports.version = "19.2.0-www-modern-e130c08b-20250625";

compiled/facebook-www/React-profiling.classic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ exports.useSyncExternalStore = function (
634634
exports.useTransition = function () {
635635
return ReactSharedInternals.H.useTransition();
636636
};
637-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
637+
exports.version = "19.2.0-www-classic-e130c08b-20250625";
638638
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
639639
"function" ===
640640
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/React-profiling.modern.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ exports.useSyncExternalStore = function (
634634
exports.useTransition = function () {
635635
return ReactSharedInternals.H.useTransition();
636636
};
637-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
637+
exports.version = "19.2.0-www-modern-e130c08b-20250625";
638638
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
639639
"function" ===
640640
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.classic.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19073,10 +19073,10 @@ __DEV__ &&
1907319073
(function () {
1907419074
var internals = {
1907519075
bundleType: 1,
19076-
version: "19.2.0-www-classic-cee7939b-20250625",
19076+
version: "19.2.0-www-classic-e130c08b-20250625",
1907719077
rendererPackageName: "react-art",
1907819078
currentDispatcherRef: ReactSharedInternals,
19079-
reconcilerVersion: "19.2.0-www-classic-cee7939b-20250625"
19079+
reconcilerVersion: "19.2.0-www-classic-e130c08b-20250625"
1908019080
};
1908119081
internals.overrideHookState = overrideHookState;
1908219082
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19110,7 +19110,7 @@ __DEV__ &&
1911019110
exports.Shape = Shape;
1911119111
exports.Surface = Surface;
1911219112
exports.Text = Text;
19113-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
19113+
exports.version = "19.2.0-www-classic-e130c08b-20250625";
1911419114
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1911519115
"function" ===
1911619116
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-dev.modern.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18845,10 +18845,10 @@ __DEV__ &&
1884518845
(function () {
1884618846
var internals = {
1884718847
bundleType: 1,
18848-
version: "19.2.0-www-modern-cee7939b-20250625",
18848+
version: "19.2.0-www-modern-e130c08b-20250625",
1884918849
rendererPackageName: "react-art",
1885018850
currentDispatcherRef: ReactSharedInternals,
18851-
reconcilerVersion: "19.2.0-www-modern-cee7939b-20250625"
18851+
reconcilerVersion: "19.2.0-www-modern-e130c08b-20250625"
1885218852
};
1885318853
internals.overrideHookState = overrideHookState;
1885418854
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -18882,7 +18882,7 @@ __DEV__ &&
1888218882
exports.Shape = Shape;
1888318883
exports.Surface = Surface;
1888418884
exports.Text = Text;
18885-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
18885+
exports.version = "19.2.0-www-modern-e130c08b-20250625";
1888618886
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1888718887
"function" ===
1888818888
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactART-prod.classic.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11346,10 +11346,10 @@ var slice = Array.prototype.slice,
1134611346
})(React.Component);
1134711347
var internals$jscomp$inline_1629 = {
1134811348
bundleType: 0,
11349-
version: "19.2.0-www-classic-cee7939b-20250625",
11349+
version: "19.2.0-www-classic-e130c08b-20250625",
1135011350
rendererPackageName: "react-art",
1135111351
currentDispatcherRef: ReactSharedInternals,
11352-
reconcilerVersion: "19.2.0-www-classic-cee7939b-20250625"
11352+
reconcilerVersion: "19.2.0-www-classic-e130c08b-20250625"
1135311353
};
1135411354
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1135511355
var hook$jscomp$inline_1630 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11375,4 +11375,4 @@ exports.RadialGradient = RadialGradient;
1137511375
exports.Shape = TYPES.SHAPE;
1137611376
exports.Surface = Surface;
1137711377
exports.Text = Text;
11378-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
11378+
exports.version = "19.2.0-www-classic-e130c08b-20250625";

compiled/facebook-www/ReactART-prod.modern.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11062,10 +11062,10 @@ var slice = Array.prototype.slice,
1106211062
})(React.Component);
1106311063
var internals$jscomp$inline_1602 = {
1106411064
bundleType: 0,
11065-
version: "19.2.0-www-modern-cee7939b-20250625",
11065+
version: "19.2.0-www-modern-e130c08b-20250625",
1106611066
rendererPackageName: "react-art",
1106711067
currentDispatcherRef: ReactSharedInternals,
11068-
reconcilerVersion: "19.2.0-www-modern-cee7939b-20250625"
11068+
reconcilerVersion: "19.2.0-www-modern-e130c08b-20250625"
1106911069
};
1107011070
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1107111071
var hook$jscomp$inline_1603 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -11091,4 +11091,4 @@ exports.RadialGradient = RadialGradient;
1109111091
exports.Shape = TYPES.SHAPE;
1109211092
exports.Surface = Surface;
1109311093
exports.Text = Text;
11094-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
11094+
exports.version = "19.2.0-www-modern-e130c08b-20250625";

compiled/facebook-www/ReactDOM-dev.classic.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31449,11 +31449,11 @@ __DEV__ &&
3144931449
return_targetInst = null;
3145031450
(function () {
3145131451
var isomorphicReactPackageVersion = React.version;
31452-
if ("19.2.0-www-classic-cee7939b-20250625" !== isomorphicReactPackageVersion)
31452+
if ("19.2.0-www-classic-e130c08b-20250625" !== isomorphicReactPackageVersion)
3145331453
throw Error(
3145431454
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3145531455
(isomorphicReactPackageVersion +
31456-
"\n - react-dom: 19.2.0-www-classic-cee7939b-20250625\nLearn more: https://react.dev/warnings/version-mismatch")
31456+
"\n - react-dom: 19.2.0-www-classic-e130c08b-20250625\nLearn more: https://react.dev/warnings/version-mismatch")
3145731457
);
3145831458
})();
3145931459
("function" === typeof Map &&
@@ -31496,10 +31496,10 @@ __DEV__ &&
3149631496
!(function () {
3149731497
var internals = {
3149831498
bundleType: 1,
31499-
version: "19.2.0-www-classic-cee7939b-20250625",
31499+
version: "19.2.0-www-classic-e130c08b-20250625",
3150031500
rendererPackageName: "react-dom",
3150131501
currentDispatcherRef: ReactSharedInternals,
31502-
reconcilerVersion: "19.2.0-www-classic-cee7939b-20250625"
31502+
reconcilerVersion: "19.2.0-www-classic-e130c08b-20250625"
3150331503
};
3150431504
internals.overrideHookState = overrideHookState;
3150531505
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32099,7 +32099,7 @@ __DEV__ &&
3209932099
exports.useFormStatus = function () {
3210032100
return resolveDispatcher().useHostTransitionStatus();
3210132101
};
32102-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
32102+
exports.version = "19.2.0-www-classic-e130c08b-20250625";
3210332103
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3210432104
"function" ===
3210532105
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-dev.modern.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31235,11 +31235,11 @@ __DEV__ &&
3123531235
return_targetInst = null;
3123631236
(function () {
3123731237
var isomorphicReactPackageVersion = React.version;
31238-
if ("19.2.0-www-modern-cee7939b-20250625" !== isomorphicReactPackageVersion)
31238+
if ("19.2.0-www-modern-e130c08b-20250625" !== isomorphicReactPackageVersion)
3123931239
throw Error(
3124031240
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3124131241
(isomorphicReactPackageVersion +
31242-
"\n - react-dom: 19.2.0-www-modern-cee7939b-20250625\nLearn more: https://react.dev/warnings/version-mismatch")
31242+
"\n - react-dom: 19.2.0-www-modern-e130c08b-20250625\nLearn more: https://react.dev/warnings/version-mismatch")
3124331243
);
3124431244
})();
3124531245
("function" === typeof Map &&
@@ -31282,10 +31282,10 @@ __DEV__ &&
3128231282
!(function () {
3128331283
var internals = {
3128431284
bundleType: 1,
31285-
version: "19.2.0-www-modern-cee7939b-20250625",
31285+
version: "19.2.0-www-modern-e130c08b-20250625",
3128631286
rendererPackageName: "react-dom",
3128731287
currentDispatcherRef: ReactSharedInternals,
31288-
reconcilerVersion: "19.2.0-www-modern-cee7939b-20250625"
31288+
reconcilerVersion: "19.2.0-www-modern-e130c08b-20250625"
3128931289
};
3129031290
internals.overrideHookState = overrideHookState;
3129131291
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31885,7 +31885,7 @@ __DEV__ &&
3188531885
exports.useFormStatus = function () {
3188631886
return resolveDispatcher().useHostTransitionStatus();
3188731887
};
31888-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
31888+
exports.version = "19.2.0-www-modern-e130c08b-20250625";
3188931889
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3189031890
"function" ===
3189131891
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-prod.classic.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19538,14 +19538,14 @@ function getCrossOriginStringAs(as, input) {
1953819538
}
1953919539
var isomorphicReactPackageVersion$jscomp$inline_2088 = React.version;
1954019540
if (
19541-
"19.2.0-www-classic-cee7939b-20250625" !==
19541+
"19.2.0-www-classic-e130c08b-20250625" !==
1954219542
isomorphicReactPackageVersion$jscomp$inline_2088
1954319543
)
1954419544
throw Error(
1954519545
formatProdErrorMessage(
1954619546
527,
1954719547
isomorphicReactPackageVersion$jscomp$inline_2088,
19548-
"19.2.0-www-classic-cee7939b-20250625"
19548+
"19.2.0-www-classic-e130c08b-20250625"
1954919549
)
1955019550
);
1955119551
Internals.findDOMNode = function (componentOrElement) {
@@ -19563,10 +19563,10 @@ Internals.Events = [
1956319563
];
1956419564
var internals$jscomp$inline_2701 = {
1956519565
bundleType: 0,
19566-
version: "19.2.0-www-classic-cee7939b-20250625",
19566+
version: "19.2.0-www-classic-e130c08b-20250625",
1956719567
rendererPackageName: "react-dom",
1956819568
currentDispatcherRef: ReactSharedInternals,
19569-
reconcilerVersion: "19.2.0-www-classic-cee7939b-20250625"
19569+
reconcilerVersion: "19.2.0-www-classic-e130c08b-20250625"
1957019570
};
1957119571
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1957219572
var hook$jscomp$inline_2702 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19978,4 +19978,4 @@ exports.useFormState = function (action, initialState, permalink) {
1997819978
exports.useFormStatus = function () {
1997919979
return ReactSharedInternals.H.useHostTransitionStatus();
1998019980
};
19981-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
19981+
exports.version = "19.2.0-www-classic-e130c08b-20250625";

compiled/facebook-www/ReactDOM-prod.modern.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19271,14 +19271,14 @@ function getCrossOriginStringAs(as, input) {
1927119271
}
1927219272
var isomorphicReactPackageVersion$jscomp$inline_2078 = React.version;
1927319273
if (
19274-
"19.2.0-www-modern-cee7939b-20250625" !==
19274+
"19.2.0-www-modern-e130c08b-20250625" !==
1927519275
isomorphicReactPackageVersion$jscomp$inline_2078
1927619276
)
1927719277
throw Error(
1927819278
formatProdErrorMessage(
1927919279
527,
1928019280
isomorphicReactPackageVersion$jscomp$inline_2078,
19281-
"19.2.0-www-modern-cee7939b-20250625"
19281+
"19.2.0-www-modern-e130c08b-20250625"
1928219282
)
1928319283
);
1928419284
Internals.findDOMNode = function (componentOrElement) {
@@ -19296,10 +19296,10 @@ Internals.Events = [
1929619296
];
1929719297
var internals$jscomp$inline_2683 = {
1929819298
bundleType: 0,
19299-
version: "19.2.0-www-modern-cee7939b-20250625",
19299+
version: "19.2.0-www-modern-e130c08b-20250625",
1930019300
rendererPackageName: "react-dom",
1930119301
currentDispatcherRef: ReactSharedInternals,
19302-
reconcilerVersion: "19.2.0-www-modern-cee7939b-20250625"
19302+
reconcilerVersion: "19.2.0-www-modern-e130c08b-20250625"
1930319303
};
1930419304
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1930519305
var hook$jscomp$inline_2684 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19711,4 +19711,4 @@ exports.useFormState = function (action, initialState, permalink) {
1971119711
exports.useFormStatus = function () {
1971219712
return ReactSharedInternals.H.useHostTransitionStatus();
1971319713
};
19714-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
19714+
exports.version = "19.2.0-www-modern-e130c08b-20250625";

compiled/facebook-www/ReactDOM-profiling.classic.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21520,14 +21520,14 @@ function getCrossOriginStringAs(as, input) {
2152021520
}
2152121521
var isomorphicReactPackageVersion$jscomp$inline_2332 = React.version;
2152221522
if (
21523-
"19.2.0-www-classic-cee7939b-20250625" !==
21523+
"19.2.0-www-classic-e130c08b-20250625" !==
2152421524
isomorphicReactPackageVersion$jscomp$inline_2332
2152521525
)
2152621526
throw Error(
2152721527
formatProdErrorMessage(
2152821528
527,
2152921529
isomorphicReactPackageVersion$jscomp$inline_2332,
21530-
"19.2.0-www-classic-cee7939b-20250625"
21530+
"19.2.0-www-classic-e130c08b-20250625"
2153121531
)
2153221532
);
2153321533
Internals.findDOMNode = function (componentOrElement) {
@@ -21545,10 +21545,10 @@ Internals.Events = [
2154521545
];
2154621546
var internals$jscomp$inline_2334 = {
2154721547
bundleType: 0,
21548-
version: "19.2.0-www-classic-cee7939b-20250625",
21548+
version: "19.2.0-www-classic-e130c08b-20250625",
2154921549
rendererPackageName: "react-dom",
2155021550
currentDispatcherRef: ReactSharedInternals,
21551-
reconcilerVersion: "19.2.0-www-classic-cee7939b-20250625"
21551+
reconcilerVersion: "19.2.0-www-classic-e130c08b-20250625"
2155221552
};
2155321553
enableSchedulingProfiler &&
2155421554
((internals$jscomp$inline_2334.getLaneLabelMap = getLaneLabelMap),
@@ -21963,7 +21963,7 @@ exports.useFormState = function (action, initialState, permalink) {
2196321963
exports.useFormStatus = function () {
2196421964
return ReactSharedInternals.H.useHostTransitionStatus();
2196521965
};
21966-
exports.version = "19.2.0-www-classic-cee7939b-20250625";
21966+
exports.version = "19.2.0-www-classic-e130c08b-20250625";
2196721967
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2196821968
"function" ===
2196921969
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

compiled/facebook-www/ReactDOM-profiling.modern.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21318,14 +21318,14 @@ function getCrossOriginStringAs(as, input) {
2131821318
}
2131921319
var isomorphicReactPackageVersion$jscomp$inline_2322 = React.version;
2132021320
if (
21321-
"19.2.0-www-modern-cee7939b-20250625" !==
21321+
"19.2.0-www-modern-e130c08b-20250625" !==
2132221322
isomorphicReactPackageVersion$jscomp$inline_2322
2132321323
)
2132421324
throw Error(
2132521325
formatProdErrorMessage(
2132621326
527,
2132721327
isomorphicReactPackageVersion$jscomp$inline_2322,
21328-
"19.2.0-www-modern-cee7939b-20250625"
21328+
"19.2.0-www-modern-e130c08b-20250625"
2132921329
)
2133021330
);
2133121331
Internals.findDOMNode = function (componentOrElement) {
@@ -21343,10 +21343,10 @@ Internals.Events = [
2134321343
];
2134421344
var internals$jscomp$inline_2324 = {
2134521345
bundleType: 0,
21346-
version: "19.2.0-www-modern-cee7939b-20250625",
21346+
version: "19.2.0-www-modern-e130c08b-20250625",
2134721347
rendererPackageName: "react-dom",
2134821348
currentDispatcherRef: ReactSharedInternals,
21349-
reconcilerVersion: "19.2.0-www-modern-cee7939b-20250625"
21349+
reconcilerVersion: "19.2.0-www-modern-e130c08b-20250625"
2135021350
};
2135121351
enableSchedulingProfiler &&
2135221352
((internals$jscomp$inline_2324.getLaneLabelMap = getLaneLabelMap),
@@ -21761,7 +21761,7 @@ exports.useFormState = function (action, initialState, permalink) {
2176121761
exports.useFormStatus = function () {
2176221762
return ReactSharedInternals.H.useHostTransitionStatus();
2176321763
};
21764-
exports.version = "19.2.0-www-modern-cee7939b-20250625";
21764+
exports.version = "19.2.0-www-modern-e130c08b-20250625";
2176521765
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2176621766
"function" ===
2176721767
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

0 commit comments

Comments
 (0)