fix: rename bottom stack frame (#33680)

`react-stack-bottom-frame` -> `react_stack_bottom_frame`.

This survives `@babel/plugin-transform-function-name`, but now frames
will be displayed as `at Object.react_stack_bottom_frame (...)` in V8.
Checks that were relying on exact function name match were updated to
use either `.indexOf()` or `.includes()`

For backwards compatibility, both React DevTools and Flight Client will
look for both options. I am not so sure about the latter and if React
version is locked.

DiffTrain build for [91d097b2c5](https://github.com/facebook/react/commit/91d097b2c588a0977a7a10ed12512dc8a34e3a5b)
This commit is contained in:
hoxyq
2025-07-01 10:13:44 -07:00
parent 59b630fc80
commit 32628e27fb
26 changed files with 250 additions and 235 deletions
+1 -1
View File
@@ -1 +1 @@
19.2.0-native-fb-1e0d12b6-20250630
19.2.0-native-fb-91d097b2-20250701
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<6151a3ea5c457e516c23b3510cab37c9>>
* @generated SignedSource<<a5249ec7acefa6006896559c407dc270>>
*/
"use strict";
@@ -404,5 +404,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
})();
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<5ea400663d78461b7ae19cdb14993c0a>>
* @generated SignedSource<<a578d90cf5683ea23322c8c54361e660>>
*/
"use strict";
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<5ea400663d78461b7ae19cdb14993c0a>>
* @generated SignedSource<<a578d90cf5683ea23322c8c54361e660>>
*/
"use strict";
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<00d94ed557e361ae73a8497c7f56314d>>
* @generated SignedSource<<3ed4f46c5b177e202e0babc67d3b7d65>>
*/
/*
@@ -643,7 +643,7 @@ __DEV__ &&
prevPrepareStackTrace = error.indexOf("\n");
-1 !== prevPrepareStackTrace &&
(error = error.slice(prevPrepareStackTrace + 1));
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
-1 !== prevPrepareStackTrace &&
(prevPrepareStackTrace = error.lastIndexOf(
"\n",
@@ -26637,7 +26637,7 @@ __DEV__ &&
suspendedThenable = null,
needsToResetSuspendedThenableDEV = !1,
callComponent = {
"react-stack-bottom-frame": function (Component, props, secondArg) {
react_stack_bottom_frame: function (Component, props, secondArg) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -26648,9 +26648,9 @@ __DEV__ &&
}
},
callComponentInDEV =
callComponent["react-stack-bottom-frame"].bind(callComponent),
callComponent.react_stack_bottom_frame.bind(callComponent),
callRender = {
"react-stack-bottom-frame": function (instance) {
react_stack_bottom_frame: function (instance) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -26660,9 +26660,9 @@ __DEV__ &&
}
}
},
callRenderInDEV = callRender["react-stack-bottom-frame"].bind(callRender),
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
callComponentDidMount = {
"react-stack-bottom-frame": function (finishedWork, instance) {
react_stack_bottom_frame: function (finishedWork, instance) {
try {
instance.componentDidMount();
} catch (error) {
@@ -26670,11 +26670,12 @@ __DEV__ &&
}
}
},
callComponentDidMountInDEV = callComponentDidMount[
"react-stack-bottom-frame"
].bind(callComponentDidMount),
callComponentDidMountInDEV =
callComponentDidMount.react_stack_bottom_frame.bind(
callComponentDidMount
),
callComponentDidUpdate = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
finishedWork,
instance,
prevProps,
@@ -26688,22 +26689,24 @@ __DEV__ &&
}
}
},
callComponentDidUpdateInDEV = callComponentDidUpdate[
"react-stack-bottom-frame"
].bind(callComponentDidUpdate),
callComponentDidUpdateInDEV =
callComponentDidUpdate.react_stack_bottom_frame.bind(
callComponentDidUpdate
),
callComponentDidCatch = {
"react-stack-bottom-frame": function (instance, errorInfo) {
react_stack_bottom_frame: function (instance, errorInfo) {
var stack = errorInfo.stack;
instance.componentDidCatch(errorInfo.value, {
componentStack: null !== stack ? stack : ""
});
}
},
callComponentDidCatchInDEV = callComponentDidCatch[
"react-stack-bottom-frame"
].bind(callComponentDidCatch),
callComponentDidCatchInDEV =
callComponentDidCatch.react_stack_bottom_frame.bind(
callComponentDidCatch
),
callComponentWillUnmount = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
instance
@@ -26715,20 +26718,21 @@ __DEV__ &&
}
}
},
callComponentWillUnmountInDEV = callComponentWillUnmount[
"react-stack-bottom-frame"
].bind(callComponentWillUnmount),
callComponentWillUnmountInDEV =
callComponentWillUnmount.react_stack_bottom_frame.bind(
callComponentWillUnmount
),
callCreate = {
"react-stack-bottom-frame": function (effect) {
react_stack_bottom_frame: function (effect) {
var create = effect.create;
effect = effect.inst;
create = create();
return (effect.destroy = create);
}
},
callCreateInDEV = callCreate["react-stack-bottom-frame"].bind(callCreate),
callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),
callDestroy = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
destroy
@@ -26740,16 +26744,15 @@ __DEV__ &&
}
}
},
callDestroyInDEV =
callDestroy["react-stack-bottom-frame"].bind(callDestroy),
callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),
callLazyInit = {
"react-stack-bottom-frame": function (lazy) {
react_stack_bottom_frame: function (lazy) {
var init = lazy._init;
return init(lazy._payload);
}
},
callLazyInitInDEV =
callLazyInit["react-stack-bottom-frame"].bind(callLazyInit),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
thenableState$1 = null,
thenableIndexCounter$1 = 0,
currentDebugInfo = null,
@@ -28844,11 +28847,11 @@ __DEV__ &&
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-native-fb-1e0d12b6-20250630" !== isomorphicReactPackageVersion)
if ("19.2.0-native-fb-91d097b2-20250701" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-native-fb-1e0d12b6-20250630\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-native-fb-91d097b2-20250701\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -28885,10 +28888,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -29026,5 +29029,5 @@ __DEV__ &&
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
})();
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<5d3a93296313bf39079353b5d955af8a>>
* @generated SignedSource<<5aa1e96b674062b509fb3a766589df97>>
*/
/*
@@ -17121,14 +17121,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2023 = React.version;
if (
"19.2.0-native-fb-1e0d12b6-20250630" !==
"19.2.0-native-fb-91d097b2-20250701" !==
isomorphicReactPackageVersion$jscomp$inline_2023
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2023,
"19.2.0-native-fb-1e0d12b6-20250630"
"19.2.0-native-fb-91d097b2-20250701"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17150,10 +17150,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2542 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2543 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17251,4 +17251,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<af99db0b1378a83e657dfa8cb2505a2e>>
* @generated SignedSource<<d644eef84b06788cf143ecbdd482f09d>>
*/
/*
@@ -19053,14 +19053,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2261 = React.version;
if (
"19.2.0-native-fb-1e0d12b6-20250630" !==
"19.2.0-native-fb-91d097b2-20250701" !==
isomorphicReactPackageVersion$jscomp$inline_2261
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2261,
"19.2.0-native-fb-1e0d12b6-20250630"
"19.2.0-native-fb-91d097b2-20250701"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19082,10 +19082,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2268 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630",
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701",
getLaneLabelMap: function () {
for (
var map = new Map(), lane = 1, index$331 = 0;
@@ -19198,4 +19198,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
listenToAllSupportedEvents(container);
return new ReactDOMHydrationRoot(initialChildren);
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<ac3b73578b63a67aac6e0e81b5654f0b>>
* @generated SignedSource<<3d6b8f574e5d394deea5bd324f4e398d>>
*/
/*
@@ -651,7 +651,7 @@ __DEV__ &&
prevPrepareStackTrace = error.indexOf("\n");
-1 !== prevPrepareStackTrace &&
(error = error.slice(prevPrepareStackTrace + 1));
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
-1 !== prevPrepareStackTrace &&
(prevPrepareStackTrace = error.lastIndexOf(
"\n",
@@ -26693,7 +26693,7 @@ __DEV__ &&
suspendedThenable = null,
needsToResetSuspendedThenableDEV = !1,
callComponent = {
"react-stack-bottom-frame": function (Component, props, secondArg) {
react_stack_bottom_frame: function (Component, props, secondArg) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -26704,9 +26704,9 @@ __DEV__ &&
}
},
callComponentInDEV =
callComponent["react-stack-bottom-frame"].bind(callComponent),
callComponent.react_stack_bottom_frame.bind(callComponent),
callRender = {
"react-stack-bottom-frame": function (instance) {
react_stack_bottom_frame: function (instance) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -26716,9 +26716,9 @@ __DEV__ &&
}
}
},
callRenderInDEV = callRender["react-stack-bottom-frame"].bind(callRender),
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
callComponentDidMount = {
"react-stack-bottom-frame": function (finishedWork, instance) {
react_stack_bottom_frame: function (finishedWork, instance) {
try {
instance.componentDidMount();
} catch (error) {
@@ -26726,11 +26726,12 @@ __DEV__ &&
}
}
},
callComponentDidMountInDEV = callComponentDidMount[
"react-stack-bottom-frame"
].bind(callComponentDidMount),
callComponentDidMountInDEV =
callComponentDidMount.react_stack_bottom_frame.bind(
callComponentDidMount
),
callComponentDidUpdate = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
finishedWork,
instance,
prevProps,
@@ -26744,22 +26745,24 @@ __DEV__ &&
}
}
},
callComponentDidUpdateInDEV = callComponentDidUpdate[
"react-stack-bottom-frame"
].bind(callComponentDidUpdate),
callComponentDidUpdateInDEV =
callComponentDidUpdate.react_stack_bottom_frame.bind(
callComponentDidUpdate
),
callComponentDidCatch = {
"react-stack-bottom-frame": function (instance, errorInfo) {
react_stack_bottom_frame: function (instance, errorInfo) {
var stack = errorInfo.stack;
instance.componentDidCatch(errorInfo.value, {
componentStack: null !== stack ? stack : ""
});
}
},
callComponentDidCatchInDEV = callComponentDidCatch[
"react-stack-bottom-frame"
].bind(callComponentDidCatch),
callComponentDidCatchInDEV =
callComponentDidCatch.react_stack_bottom_frame.bind(
callComponentDidCatch
),
callComponentWillUnmount = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
instance
@@ -26771,20 +26774,21 @@ __DEV__ &&
}
}
},
callComponentWillUnmountInDEV = callComponentWillUnmount[
"react-stack-bottom-frame"
].bind(callComponentWillUnmount),
callComponentWillUnmountInDEV =
callComponentWillUnmount.react_stack_bottom_frame.bind(
callComponentWillUnmount
),
callCreate = {
"react-stack-bottom-frame": function (effect) {
react_stack_bottom_frame: function (effect) {
var create = effect.create;
effect = effect.inst;
create = create();
return (effect.destroy = create);
}
},
callCreateInDEV = callCreate["react-stack-bottom-frame"].bind(callCreate),
callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),
callDestroy = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
destroy
@@ -26796,16 +26800,15 @@ __DEV__ &&
}
}
},
callDestroyInDEV =
callDestroy["react-stack-bottom-frame"].bind(callDestroy),
callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),
callLazyInit = {
"react-stack-bottom-frame": function (lazy) {
react_stack_bottom_frame: function (lazy) {
var init = lazy._init;
return init(lazy._payload);
}
},
callLazyInitInDEV =
callLazyInit["react-stack-bottom-frame"].bind(callLazyInit),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
thenableState$1 = null,
thenableIndexCounter$1 = 0,
currentDebugInfo = null,
@@ -28900,11 +28903,11 @@ __DEV__ &&
};
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-native-fb-1e0d12b6-20250630" !== isomorphicReactPackageVersion)
if ("19.2.0-native-fb-91d097b2-20250701" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-dom: 19.2.0-native-fb-1e0d12b6-20250630\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-native-fb-91d097b2-20250701\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -28941,10 +28944,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -29398,7 +29401,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<451433bb0a15518c19595fbbbcb8975f>>
* @generated SignedSource<<a79b42810746859e45838f92378f5de4>>
*/
/*
@@ -17132,14 +17132,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2024 = React.version;
if (
"19.2.0-native-fb-1e0d12b6-20250630" !==
"19.2.0-native-fb-91d097b2-20250701" !==
isomorphicReactPackageVersion$jscomp$inline_2024
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2024,
"19.2.0-native-fb-1e0d12b6-20250630"
"19.2.0-native-fb-91d097b2-20250701"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -17161,10 +17161,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2545 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2546 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -17415,4 +17415,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<4bcdbc3d5ad9a1fdcddeef1e21b3b6b2>>
* @generated SignedSource<<c508d45e99b9979594793d636c718657>>
*/
/*
@@ -19068,14 +19068,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
};
var isomorphicReactPackageVersion$jscomp$inline_2262 = React.version;
if (
"19.2.0-native-fb-1e0d12b6-20250630" !==
"19.2.0-native-fb-91d097b2-20250701" !==
isomorphicReactPackageVersion$jscomp$inline_2262
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2262,
"19.2.0-native-fb-1e0d12b6-20250630"
"19.2.0-native-fb-91d097b2-20250701"
)
);
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19097,10 +19097,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
};
var internals$jscomp$inline_2269 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630",
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701",
getLaneLabelMap: function () {
for (
var map = new Map(), lane = 1, index$331 = 0;
@@ -19366,7 +19366,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<7a8ceed1927651ccb9b4186bb9fc049e>>
* @generated SignedSource<<995e9d728f0c368be2098bb7a65fa753>>
*/
"use strict";
@@ -1008,7 +1008,7 @@ __DEV__ &&
prevPrepareStackTrace = error.indexOf("\n");
-1 !== prevPrepareStackTrace &&
(error = error.slice(prevPrepareStackTrace + 1));
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
-1 !== prevPrepareStackTrace &&
(prevPrepareStackTrace = error.lastIndexOf(
"\n",
@@ -14148,7 +14148,7 @@ __DEV__ &&
suspendedThenable = null,
needsToResetSuspendedThenableDEV = !1,
callComponent = {
"react-stack-bottom-frame": function (Component, props, secondArg) {
react_stack_bottom_frame: function (Component, props, secondArg) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -14159,9 +14159,9 @@ __DEV__ &&
}
},
callComponentInDEV =
callComponent["react-stack-bottom-frame"].bind(callComponent),
callComponent.react_stack_bottom_frame.bind(callComponent),
callRender = {
"react-stack-bottom-frame": function (instance) {
react_stack_bottom_frame: function (instance) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -14171,9 +14171,9 @@ __DEV__ &&
}
}
},
callRenderInDEV = callRender["react-stack-bottom-frame"].bind(callRender),
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
callComponentDidMount = {
"react-stack-bottom-frame": function (finishedWork, instance) {
react_stack_bottom_frame: function (finishedWork, instance) {
try {
instance.componentDidMount();
} catch (error) {
@@ -14181,11 +14181,12 @@ __DEV__ &&
}
}
},
callComponentDidMountInDEV = callComponentDidMount[
"react-stack-bottom-frame"
].bind(callComponentDidMount),
callComponentDidMountInDEV =
callComponentDidMount.react_stack_bottom_frame.bind(
callComponentDidMount
),
callComponentDidUpdate = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
finishedWork,
instance,
prevProps,
@@ -14199,22 +14200,24 @@ __DEV__ &&
}
}
},
callComponentDidUpdateInDEV = callComponentDidUpdate[
"react-stack-bottom-frame"
].bind(callComponentDidUpdate),
callComponentDidUpdateInDEV =
callComponentDidUpdate.react_stack_bottom_frame.bind(
callComponentDidUpdate
),
callComponentDidCatch = {
"react-stack-bottom-frame": function (instance, errorInfo) {
react_stack_bottom_frame: function (instance, errorInfo) {
var stack = errorInfo.stack;
instance.componentDidCatch(errorInfo.value, {
componentStack: null !== stack ? stack : ""
});
}
},
callComponentDidCatchInDEV = callComponentDidCatch[
"react-stack-bottom-frame"
].bind(callComponentDidCatch),
callComponentDidCatchInDEV =
callComponentDidCatch.react_stack_bottom_frame.bind(
callComponentDidCatch
),
callComponentWillUnmount = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
instance
@@ -14226,20 +14229,21 @@ __DEV__ &&
}
}
},
callComponentWillUnmountInDEV = callComponentWillUnmount[
"react-stack-bottom-frame"
].bind(callComponentWillUnmount),
callComponentWillUnmountInDEV =
callComponentWillUnmount.react_stack_bottom_frame.bind(
callComponentWillUnmount
),
callCreate = {
"react-stack-bottom-frame": function (effect) {
react_stack_bottom_frame: function (effect) {
var create = effect.create;
effect = effect.inst;
create = create();
return (effect.destroy = create);
}
},
callCreateInDEV = callCreate["react-stack-bottom-frame"].bind(callCreate),
callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),
callDestroy = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
destroy
@@ -14251,16 +14255,15 @@ __DEV__ &&
}
}
},
callDestroyInDEV =
callDestroy["react-stack-bottom-frame"].bind(callDestroy),
callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),
callLazyInit = {
"react-stack-bottom-frame": function (lazy) {
react_stack_bottom_frame: function (lazy) {
var init = lazy._init;
return init(lazy._payload);
}
},
callLazyInitInDEV =
callLazyInit["react-stack-bottom-frame"].bind(callLazyInit),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
thenableState$1 = null,
thenableIndexCounter$1 = 0,
currentDebugInfo = null,
@@ -15722,10 +15725,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15870,5 +15873,5 @@ __DEV__ &&
flushSyncWorkAcrossRoots_impl(0, !0));
}
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
})();
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<9f5bd80eaec8850acc70608ab22d2b85>>
* @generated SignedSource<<6e83a108f524b9d0e3a7258b3a8bd432>>
*/
"use strict";
@@ -9905,10 +9905,10 @@ function wrapFiber(fiber) {
}
var internals$jscomp$inline_1453 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1454 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -10044,4 +10044,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
flushSyncWorkAcrossRoots_impl(0, !0));
}
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<8264e4dd5b6364274aaf7617349ceefa>>
* @generated SignedSource<<cc8c0cabc0a18b1000d483f85cf18ae3>>
*/
"use strict";
@@ -10525,10 +10525,10 @@ function wrapFiber(fiber) {
}
var internals$jscomp$inline_1260 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630",
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701",
getLaneLabelMap: function () {
for (
var map = new Map(), lane = 1, index$155 = 0;
@@ -10679,4 +10679,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
flushSyncWorkAcrossRoots_impl(0, !0));
}
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<59a04ddd53ae1312d3cab8829616c696>>
* @generated SignedSource<<af4a2e1a80c66ed456f9810728af474f>>
*/
"use strict";
@@ -316,13 +316,13 @@ __DEV__ &&
return null;
};
React = {
"react-stack-bottom-frame": function (callStackForError) {
react_stack_bottom_frame: function (callStackForError) {
return callStackForError();
}
};
var specialPropKeyWarningShown;
var didWarnAboutElementRef = {};
var unknownOwnerDebugStack = React["react-stack-bottom-frame"].bind(
var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(
React,
UnknownOwner
)();
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<ef8d1b87483c56d5f88b9980c7df8d3f>>
* @generated SignedSource<<261cf54b02203171467f326f0f8f18b7>>
*/
"use strict";
@@ -316,13 +316,13 @@ __DEV__ &&
return null;
};
React = {
"react-stack-bottom-frame": function (callStackForError) {
react_stack_bottom_frame: function (callStackForError) {
return callStackForError();
}
};
var specialPropKeyWarningShown;
var didWarnAboutElementRef = {};
var unknownOwnerDebugStack = React["react-stack-bottom-frame"].bind(
var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(
React,
UnknownOwner
)();
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<3d81c5b97c52051d16bca8cc1bdecb4c>>
* @generated SignedSource<<4eabb3187bacba7b31f84634ddf7f842>>
*/
"use strict";
@@ -768,13 +768,13 @@ __DEV__ &&
return null;
};
fnName = {
"react-stack-bottom-frame": function (callStackForError) {
react_stack_bottom_frame: function (callStackForError) {
return callStackForError();
}
};
var specialPropKeyWarningShown, didWarnAboutOldJSXRuntime;
var didWarnAboutElementRef = {};
var unknownOwnerDebugStack = fnName["react-stack-bottom-frame"].bind(
var unknownOwnerDebugStack = fnName.react_stack_bottom_frame.bind(
fnName,
UnknownOwner
)();
@@ -1413,7 +1413,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<01abb9251bdc5f70490b44c2b57d5ef5>>
* @generated SignedSource<<d262199c58ecb3b07e0358edaf8475ff>>
*/
"use strict";
@@ -589,4 +589,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<75f969e16ca7ed73dbc49756c6abaf57>>
* @generated SignedSource<<5fd1693dc678a9738a3f0fce7d11ce3e>>
*/
"use strict";
@@ -593,7 +593,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-native-fb-1e0d12b6-20250630";
exports.version = "19.2.0-native-fb-91d097b2-20250701";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -1 +1 @@
1e0d12b6f273d7345e32c16cd937475ed7c512ad
91d097b2c588a0977a7a10ed12512dc8a34e3a5b
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<acf5a3268b377c8b68cd7118d5850cb5>>
* @generated SignedSource<<09d42b26091115872821eae61ab2c6c7>>
*/
"use strict";
@@ -233,7 +233,7 @@ __DEV__ &&
prevPrepareStackTrace = error.indexOf("\n");
-1 !== prevPrepareStackTrace &&
(error = error.slice(prevPrepareStackTrace + 1));
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
-1 !== prevPrepareStackTrace &&
(prevPrepareStackTrace = error.lastIndexOf(
"\n",
@@ -17322,7 +17322,7 @@ __DEV__ &&
suspendedThenable = null,
needsToResetSuspendedThenableDEV = !1,
callComponent = {
"react-stack-bottom-frame": function (Component, props, secondArg) {
react_stack_bottom_frame: function (Component, props, secondArg) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -17333,9 +17333,9 @@ __DEV__ &&
}
},
callComponentInDEV =
callComponent["react-stack-bottom-frame"].bind(callComponent),
callComponent.react_stack_bottom_frame.bind(callComponent),
callRender = {
"react-stack-bottom-frame": function (instance) {
react_stack_bottom_frame: function (instance) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -17345,9 +17345,9 @@ __DEV__ &&
}
}
},
callRenderInDEV = callRender["react-stack-bottom-frame"].bind(callRender),
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
callComponentDidMount = {
"react-stack-bottom-frame": function (finishedWork, instance) {
react_stack_bottom_frame: function (finishedWork, instance) {
try {
instance.componentDidMount();
} catch (error) {
@@ -17355,11 +17355,12 @@ __DEV__ &&
}
}
},
callComponentDidMountInDEV = callComponentDidMount[
"react-stack-bottom-frame"
].bind(callComponentDidMount),
callComponentDidMountInDEV =
callComponentDidMount.react_stack_bottom_frame.bind(
callComponentDidMount
),
callComponentDidUpdate = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
finishedWork,
instance,
prevProps,
@@ -17373,22 +17374,24 @@ __DEV__ &&
}
}
},
callComponentDidUpdateInDEV = callComponentDidUpdate[
"react-stack-bottom-frame"
].bind(callComponentDidUpdate),
callComponentDidUpdateInDEV =
callComponentDidUpdate.react_stack_bottom_frame.bind(
callComponentDidUpdate
),
callComponentDidCatch = {
"react-stack-bottom-frame": function (instance, errorInfo) {
react_stack_bottom_frame: function (instance, errorInfo) {
var stack = errorInfo.stack;
instance.componentDidCatch(errorInfo.value, {
componentStack: null !== stack ? stack : ""
});
}
},
callComponentDidCatchInDEV = callComponentDidCatch[
"react-stack-bottom-frame"
].bind(callComponentDidCatch),
callComponentDidCatchInDEV =
callComponentDidCatch.react_stack_bottom_frame.bind(
callComponentDidCatch
),
callComponentWillUnmount = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
instance
@@ -17400,20 +17403,21 @@ __DEV__ &&
}
}
},
callComponentWillUnmountInDEV = callComponentWillUnmount[
"react-stack-bottom-frame"
].bind(callComponentWillUnmount),
callComponentWillUnmountInDEV =
callComponentWillUnmount.react_stack_bottom_frame.bind(
callComponentWillUnmount
),
callCreate = {
"react-stack-bottom-frame": function (effect) {
react_stack_bottom_frame: function (effect) {
var create = effect.create;
effect = effect.inst;
create = create();
return (effect.destroy = create);
}
},
callCreateInDEV = callCreate["react-stack-bottom-frame"].bind(callCreate),
callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),
callDestroy = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
destroy
@@ -17425,16 +17429,15 @@ __DEV__ &&
}
}
},
callDestroyInDEV =
callDestroy["react-stack-bottom-frame"].bind(callDestroy),
callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),
callLazyInit = {
"react-stack-bottom-frame": function (lazy) {
react_stack_bottom_frame: function (lazy) {
var init = lazy._init;
return init(lazy._payload);
}
},
callLazyInitInDEV =
callLazyInit["react-stack-bottom-frame"].bind(callLazyInit),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
thenableState$1 = null,
thenableIndexCounter$1 = 0,
currentDebugInfo = null,
@@ -19064,10 +19067,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<5e29585c691e36e92d29d6881ec628c9>>
* @generated SignedSource<<b021d43eb31713e185aa60f7251d9320>>
*/
"use strict";
@@ -11029,10 +11029,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1257 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1257.rendererConfig = extraDevToolsConfig);
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<225ce51253fd044ed59381ef10ae7ae1>>
* @generated SignedSource<<3d439f64cc9a126419ddba68fc067323>>
*/
"use strict";
@@ -12932,10 +12932,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1490 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1490.rendererConfig = extraDevToolsConfig);
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<5000a6b7c794da552a56c98545a7f047>>
* @generated SignedSource<<01cf69df53fad2cdbb1f000d0e5a0991>>
*/
"use strict";
@@ -228,7 +228,7 @@ __DEV__ &&
prevPrepareStackTrace = error.indexOf("\n");
-1 !== prevPrepareStackTrace &&
(error = error.slice(prevPrepareStackTrace + 1));
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
prevPrepareStackTrace = error.indexOf("react_stack_bottom_frame");
-1 !== prevPrepareStackTrace &&
(prevPrepareStackTrace = error.lastIndexOf(
"\n",
@@ -17939,7 +17939,7 @@ __DEV__ &&
suspendedThenable = null,
needsToResetSuspendedThenableDEV = !1,
callComponent = {
"react-stack-bottom-frame": function (Component, props, secondArg) {
react_stack_bottom_frame: function (Component, props, secondArg) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -17950,9 +17950,9 @@ __DEV__ &&
}
},
callComponentInDEV =
callComponent["react-stack-bottom-frame"].bind(callComponent),
callComponent.react_stack_bottom_frame.bind(callComponent),
callRender = {
"react-stack-bottom-frame": function (instance) {
react_stack_bottom_frame: function (instance) {
var wasRendering = isRendering;
isRendering = !0;
try {
@@ -17962,9 +17962,9 @@ __DEV__ &&
}
}
},
callRenderInDEV = callRender["react-stack-bottom-frame"].bind(callRender),
callRenderInDEV = callRender.react_stack_bottom_frame.bind(callRender),
callComponentDidMount = {
"react-stack-bottom-frame": function (finishedWork, instance) {
react_stack_bottom_frame: function (finishedWork, instance) {
try {
instance.componentDidMount();
} catch (error) {
@@ -17972,11 +17972,12 @@ __DEV__ &&
}
}
},
callComponentDidMountInDEV = callComponentDidMount[
"react-stack-bottom-frame"
].bind(callComponentDidMount),
callComponentDidMountInDEV =
callComponentDidMount.react_stack_bottom_frame.bind(
callComponentDidMount
),
callComponentDidUpdate = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
finishedWork,
instance,
prevProps,
@@ -17990,22 +17991,24 @@ __DEV__ &&
}
}
},
callComponentDidUpdateInDEV = callComponentDidUpdate[
"react-stack-bottom-frame"
].bind(callComponentDidUpdate),
callComponentDidUpdateInDEV =
callComponentDidUpdate.react_stack_bottom_frame.bind(
callComponentDidUpdate
),
callComponentDidCatch = {
"react-stack-bottom-frame": function (instance, errorInfo) {
react_stack_bottom_frame: function (instance, errorInfo) {
var stack = errorInfo.stack;
instance.componentDidCatch(errorInfo.value, {
componentStack: null !== stack ? stack : ""
});
}
},
callComponentDidCatchInDEV = callComponentDidCatch[
"react-stack-bottom-frame"
].bind(callComponentDidCatch),
callComponentDidCatchInDEV =
callComponentDidCatch.react_stack_bottom_frame.bind(
callComponentDidCatch
),
callComponentWillUnmount = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
instance
@@ -18017,20 +18020,21 @@ __DEV__ &&
}
}
},
callComponentWillUnmountInDEV = callComponentWillUnmount[
"react-stack-bottom-frame"
].bind(callComponentWillUnmount),
callComponentWillUnmountInDEV =
callComponentWillUnmount.react_stack_bottom_frame.bind(
callComponentWillUnmount
),
callCreate = {
"react-stack-bottom-frame": function (effect) {
react_stack_bottom_frame: function (effect) {
var create = effect.create;
effect = effect.inst;
create = create();
return (effect.destroy = create);
}
},
callCreateInDEV = callCreate["react-stack-bottom-frame"].bind(callCreate),
callCreateInDEV = callCreate.react_stack_bottom_frame.bind(callCreate),
callDestroy = {
"react-stack-bottom-frame": function (
react_stack_bottom_frame: function (
current,
nearestMountedAncestor,
destroy
@@ -18042,16 +18046,15 @@ __DEV__ &&
}
}
},
callDestroyInDEV =
callDestroy["react-stack-bottom-frame"].bind(callDestroy),
callDestroyInDEV = callDestroy.react_stack_bottom_frame.bind(callDestroy),
callLazyInit = {
"react-stack-bottom-frame": function (lazy) {
react_stack_bottom_frame: function (lazy) {
var init = lazy._init;
return init(lazy._payload);
}
},
callLazyInitInDEV =
callLazyInit["react-stack-bottom-frame"].bind(callLazyInit),
callLazyInit.react_stack_bottom_frame.bind(callLazyInit),
thenableState$1 = null,
thenableIndexCounter$1 = 0,
currentDebugInfo = null,
@@ -19397,11 +19400,11 @@ __DEV__ &&
shouldSuspendImpl = newShouldSuspendImpl;
};
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-native-fb-1e0d12b6-20250630" !== isomorphicReactPackageVersion)
if ("19.2.0-native-fb-91d097b2-20250701" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-native-renderer: 19.2.0-native-fb-1e0d12b6-20250630\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-native-renderer: 19.2.0-native-fb-91d097b2-20250701\nLearn more: https://react.dev/warnings/version-mismatch")
);
if (
"function" !==
@@ -19427,10 +19430,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<9d6d1369406a60f73532eb3d4085655e>>
* @generated SignedSource<<3badc944456be208cc98d96b0f2f329d>>
*/
"use strict";
@@ -11221,11 +11221,11 @@ function updateContainer(element, container, parentComponent, callback) {
return lane;
}
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-native-fb-1e0d12b6-20250630" !== isomorphicReactPackageVersion)
if ("19.2.0-native-fb-91d097b2-20250701" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-native-renderer: 19.2.0-native-fb-1e0d12b6-20250630\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-native-renderer: 19.2.0-native-fb-91d097b2-20250701\nLearn more: https://react.dev/warnings/version-mismatch")
);
if (
"function" !==
@@ -11275,10 +11275,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1313 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1313.rendererConfig = extraDevToolsConfig);
@@ -7,7 +7,7 @@
* @noflow
* @nolint
* @preventMunge
* @generated SignedSource<<da1cfc17691bc81ed91f7acdce4a5fb4>>
* @generated SignedSource<<80f70cdcb1211b17dfcf6ef0b2ef76e7>>
*/
"use strict";
@@ -13113,11 +13113,11 @@ function updateContainer(element, container, parentComponent, callback) {
return lane;
}
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-native-fb-1e0d12b6-20250630" !== isomorphicReactPackageVersion)
if ("19.2.0-native-fb-91d097b2-20250701" !== isomorphicReactPackageVersion)
throw Error(
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
(isomorphicReactPackageVersion +
"\n - react-native-renderer: 19.2.0-native-fb-1e0d12b6-20250630\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-native-renderer: 19.2.0-native-fb-91d097b2-20250701\nLearn more: https://react.dev/warnings/version-mismatch")
);
if (
"function" !==
@@ -13167,10 +13167,10 @@ batchedUpdatesImpl = function (fn, a) {
var roots = new Map(),
internals$jscomp$inline_1546 = {
bundleType: 0,
version: "19.2.0-native-fb-1e0d12b6-20250630",
version: "19.2.0-native-fb-91d097b2-20250701",
rendererPackageName: "react-native-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-native-fb-1e0d12b6-20250630"
reconcilerVersion: "19.2.0-native-fb-91d097b2-20250701"
};
null !== extraDevToolsConfig &&
(internals$jscomp$inline_1546.rendererConfig = extraDevToolsConfig);
@@ -1,7 +1,7 @@
{
"name": "eslint-plugin-react-hooks",
"description": "ESLint rules for React Hooks",
"version": "0.0.0-experimental-1e0d12b6-20250630",
"version": "0.0.0-experimental-91d097b2-20250701",
"repository": {
"type": "git",
"url": "https://github.com/facebook/react.git",