File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,13 @@ import typeof * as DynamicFlagsType from 'ReactNativeInternalFeatureFlags';
2020// flag here but it won't be set to `true` in any of our test runs. Need to
2121// update the test configuration.
2222
23- export const enableUseRefAccessWarning = __VARIANT__ ;
23+ export const alwaysThrottleRetries = __VARIANT__ ;
24+ export const disableModulePatternComponents = __VARIANT__ ;
2425export const enableDeferRootSchedulingToMicrotask = __VARIANT__ ;
2526export const enableUnifiedSyncLane = __VARIANT__ ;
26- export const alwaysThrottleRetries = __VARIANT__ ;
27- export const useMicrotasksForSchedulingInFabric = __VARIANT__ ;
27+ export const enableUseRefAccessWarning = __VARIANT__ ;
2828export const passChildrenWhenCloningPersistedNodes = __VARIANT__ ;
29+ export const useMicrotasksForSchedulingInFabric = __VARIANT__ ;
2930
3031// Flow magic to verify the exports of this file match the original version.
3132( ( ( ( null : any ) : ExportsType ) : DynamicFlagsType ) : ExportsType ) ;
Original file line number Diff line number Diff line change @@ -18,12 +18,13 @@ import * as dynamicFlags from 'ReactNativeInternalFeatureFlags';
1818// We destructure each value before re-exporting to avoid a dynamic look-up on
1919// the exports object every time a flag is read.
2020export const {
21- enableUseRefAccessWarning,
21+ alwaysThrottleRetries,
22+ disableModulePatternComponents,
2223 enableDeferRootSchedulingToMicrotask,
2324 enableUnifiedSyncLane,
24- alwaysThrottleRetries,
25- useMicrotasksForSchedulingInFabric,
25+ enableUseRefAccessWarning,
2626 passChildrenWhenCloningPersistedNodes,
27+ useMicrotasksForSchedulingInFabric,
2728} = dynamicFlags ;
2829
2930// The rest of the flags are static for better dead code elimination.
@@ -55,7 +56,6 @@ export const enableSuspenseCallback = false;
5556export const disableLegacyContext = false ;
5657export const enableTrustedTypesIntegration = false ;
5758export const disableTextareaChildren = false ;
58- export const disableModulePatternComponents = false ;
5959export const enableSuspenseAvoidThisFallback = false ;
6060export const enableSuspenseAvoidThisFallbackFizz = false ;
6161export const enableCPUSuspense = true ;
Original file line number Diff line number Diff line change 88 */
99
1010declare module 'ReactNativeInternalFeatureFlags' {
11- declare export var enableUseRefAccessWarning : boolean ;
11+ declare export var alwaysThrottleRetries : boolean ;
12+ declare export var disableModulePatternComponents : boolean ;
1213 declare export var enableDeferRootSchedulingToMicrotask : boolean ;
1314 declare export var enableUnifiedSyncLane : boolean ;
14- declare export var alwaysThrottleRetries : boolean ;
15- declare export var useMicrotasksForSchedulingInFabric : boolean ;
15+ declare export var enableUseRefAccessWarning : boolean ;
1616 declare export var passChildrenWhenCloningPersistedNodes : boolean ;
17+ declare export var useMicrotasksForSchedulingInFabric : boolean ;
1718}
You can’t perform that action at this time.
0 commit comments