Commit 634b25c 1 parent 692c79b commit 634b25c Copy full SHA for 634b25c
File tree 3 files changed +12
-10
lines changed
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';
20
20
// flag here but it won't be set to `true` in any of our test runs. Need to
21
21
// update the test configuration.
22
22
23
- export const enableUseRefAccessWarning = __VARIANT__ ;
23
+ export const alwaysThrottleRetries = __VARIANT__ ;
24
+ export const disableModulePatternComponents = __VARIANT__ ;
24
25
export const enableDeferRootSchedulingToMicrotask = __VARIANT__ ;
25
26
export const enableUnifiedSyncLane = __VARIANT__ ;
26
- export const alwaysThrottleRetries = __VARIANT__ ;
27
- export const useMicrotasksForSchedulingInFabric = __VARIANT__ ;
27
+ export const enableUseRefAccessWarning = __VARIANT__ ;
28
28
export const passChildrenWhenCloningPersistedNodes = __VARIANT__ ;
29
+ export const useMicrotasksForSchedulingInFabric = __VARIANT__ ;
29
30
30
31
// Flow magic to verify the exports of this file match the original version.
31
32
( ( ( ( null : any ) : ExportsType ) : DynamicFlagsType ) : ExportsType ) ;
Original file line number Diff line number Diff line change @@ -18,12 +18,13 @@ import * as dynamicFlags from 'ReactNativeInternalFeatureFlags';
18
18
// We destructure each value before re-exporting to avoid a dynamic look-up on
19
19
// the exports object every time a flag is read.
20
20
export const {
21
- enableUseRefAccessWarning,
21
+ alwaysThrottleRetries,
22
+ disableModulePatternComponents,
22
23
enableDeferRootSchedulingToMicrotask,
23
24
enableUnifiedSyncLane,
24
- alwaysThrottleRetries,
25
- useMicrotasksForSchedulingInFabric,
25
+ enableUseRefAccessWarning,
26
26
passChildrenWhenCloningPersistedNodes,
27
+ useMicrotasksForSchedulingInFabric,
27
28
} = dynamicFlags ;
28
29
29
30
// The rest of the flags are static for better dead code elimination.
@@ -55,7 +56,6 @@ export const enableSuspenseCallback = false;
55
56
export const disableLegacyContext = false ;
56
57
export const enableTrustedTypesIntegration = false ;
57
58
export const disableTextareaChildren = false ;
58
- export const disableModulePatternComponents = false ;
59
59
export const enableSuspenseAvoidThisFallback = false ;
60
60
export const enableSuspenseAvoidThisFallbackFizz = false ;
61
61
export const enableCPUSuspense = true ;
Original file line number Diff line number Diff line change 8
8
*/
9
9
10
10
declare module 'ReactNativeInternalFeatureFlags' {
11
- declare export var enableUseRefAccessWarning : boolean ;
11
+ declare export var alwaysThrottleRetries : boolean ;
12
+ declare export var disableModulePatternComponents : boolean ;
12
13
declare export var enableDeferRootSchedulingToMicrotask : boolean ;
13
14
declare export var enableUnifiedSyncLane : boolean ;
14
- declare export var alwaysThrottleRetries : boolean ;
15
- declare export var useMicrotasksForSchedulingInFabric : boolean ;
15
+ declare export var enableUseRefAccessWarning : boolean ;
16
16
declare export var passChildrenWhenCloningPersistedNodes : boolean ;
17
+ declare export var useMicrotasksForSchedulingInFabric : boolean ;
17
18
}
You can’t perform that action at this time.
0 commit comments