react-native 0.84.0-nightly-20251202-b0e754bc7 → 0.84.0-nightly-20251204-5bb3a6d68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Libraries/Animated/animations/Animation.js +1 -2
- package/Libraries/Core/ReactNativeVersion.js +1 -1
- package/React/Base/RCTVersion.m +1 -1
- package/React/FBReactNativeSpec/FBReactNativeSpecJSI.h +186 -194
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/devsupport/inspector/FrameTimingSequence.kt +1 -0
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +1 -7
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +1 -11
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +1 -3
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +1 -3
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +1 -12
- package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +1 -3
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/runtime/ReactHostImpl.kt +0 -8
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +1 -15
- package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +1 -4
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactHostInspectorTarget.cpp +1 -0
- package/ReactAndroid/src/main/jni/react/runtime/jni/JReactHostInspectorTarget.h +11 -0
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/ReactCommon/jsi/jsi/jsi.cpp +4 -0
- package/ReactCommon/jsi/jsi/jsi.h +66 -0
- package/ReactCommon/jsinspector-modern/tests/TracingTest.cpp +18 -0
- package/ReactCommon/jsinspector-modern/tracing/FrameTimingSequence.h +13 -4
- package/ReactCommon/jsinspector-modern/tracing/HostTracingProfileSerializer.cpp +14 -1
- package/ReactCommon/jsinspector-modern/tracing/TraceEventGenerator.cpp +24 -0
- package/ReactCommon/jsinspector-modern/tracing/TraceEventGenerator.h +13 -1
- package/ReactCommon/jsinspector-modern/tracing/TracingCategory.h +1 -1
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +1 -5
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +1 -6
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +87 -105
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +2 -4
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +1 -5
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDynamicProvider.h +1 -10
- package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +1 -2
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +1 -6
- package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +1 -3
- package/ReactCommon/react/renderer/animated/NativeAnimatedNodesManager.cpp +2 -6
- package/ReactCommon/react/renderer/animationbackend/AnimatedPropSerializer.cpp +130 -0
- package/ReactCommon/react/renderer/animationbackend/AnimatedProps.h +5 -1
- package/ReactCommon/react/renderer/animationbackend/AnimatedPropsBuilder.h +4 -0
- package/ReactCommon/react/renderer/animationbackend/AnimatedPropsSerializer.h +17 -0
- package/ReactCommon/react/renderer/animationbackend/AnimationBackend.cpp +6 -22
- package/ReactCommon/react/runtime/ReactInstance.cpp +1 -1
- package/package.json +10 -10
- package/scripts/codegen/generate-artifacts-executor/generateSchemaInfos.js +7 -6
- package/sdks/hermes-engine/version.properties +1 -1
- package/src/private/animated/createAnimatedPropsHook.js +1 -2
- package/src/private/featureflags/ReactNativeFeatureFlags.js +1 -6
- package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +1 -2
- /package/ReactCommon/jsi/jsi/{hermes.h → hermes-interfaces.h} +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* This source code is licensed under the MIT license found in the
|
|
5
5
|
* LICENSE file in the root directory of this source tree.
|
|
6
6
|
*
|
|
7
|
-
* @generated SignedSource<<
|
|
7
|
+
* @generated SignedSource<<34c34af7d83e132d6e9c75bff291d072>>
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
/**
|
|
@@ -83,24 +83,6 @@ bool ReactNativeFeatureFlagsAccessor::cxxNativeAnimatedEnabled() {
|
|
|
83
83
|
return flagValue.value();
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
bool ReactNativeFeatureFlagsAccessor::cxxNativeAnimatedRemoveJsSync() {
|
|
87
|
-
auto flagValue = cxxNativeAnimatedRemoveJsSync_.load();
|
|
88
|
-
|
|
89
|
-
if (!flagValue.has_value()) {
|
|
90
|
-
// This block is not exclusive but it is not necessary.
|
|
91
|
-
// If multiple threads try to initialize the feature flag, we would only
|
|
92
|
-
// be accessing the provider multiple times but the end state of this
|
|
93
|
-
// instance and the returned flag value would be the same.
|
|
94
|
-
|
|
95
|
-
markFlagAsAccessed(3, "cxxNativeAnimatedRemoveJsSync");
|
|
96
|
-
|
|
97
|
-
flagValue = currentProvider_->cxxNativeAnimatedRemoveJsSync();
|
|
98
|
-
cxxNativeAnimatedRemoveJsSync_ = flagValue;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
return flagValue.value();
|
|
102
|
-
}
|
|
103
|
-
|
|
104
86
|
bool ReactNativeFeatureFlagsAccessor::disableEarlyViewCommandExecution() {
|
|
105
87
|
auto flagValue = disableEarlyViewCommandExecution_.load();
|
|
106
88
|
|
|
@@ -110,7 +92,7 @@ bool ReactNativeFeatureFlagsAccessor::disableEarlyViewCommandExecution() {
|
|
|
110
92
|
// be accessing the provider multiple times but the end state of this
|
|
111
93
|
// instance and the returned flag value would be the same.
|
|
112
94
|
|
|
113
|
-
markFlagAsAccessed(
|
|
95
|
+
markFlagAsAccessed(3, "disableEarlyViewCommandExecution");
|
|
114
96
|
|
|
115
97
|
flagValue = currentProvider_->disableEarlyViewCommandExecution();
|
|
116
98
|
disableEarlyViewCommandExecution_ = flagValue;
|
|
@@ -128,7 +110,7 @@ bool ReactNativeFeatureFlagsAccessor::disableImageViewPreallocationAndroid() {
|
|
|
128
110
|
// be accessing the provider multiple times but the end state of this
|
|
129
111
|
// instance and the returned flag value would be the same.
|
|
130
112
|
|
|
131
|
-
markFlagAsAccessed(
|
|
113
|
+
markFlagAsAccessed(4, "disableImageViewPreallocationAndroid");
|
|
132
114
|
|
|
133
115
|
flagValue = currentProvider_->disableImageViewPreallocationAndroid();
|
|
134
116
|
disableImageViewPreallocationAndroid_ = flagValue;
|
|
@@ -146,7 +128,7 @@ bool ReactNativeFeatureFlagsAccessor::disableMountItemReorderingAndroid() {
|
|
|
146
128
|
// be accessing the provider multiple times but the end state of this
|
|
147
129
|
// instance and the returned flag value would be the same.
|
|
148
130
|
|
|
149
|
-
markFlagAsAccessed(
|
|
131
|
+
markFlagAsAccessed(5, "disableMountItemReorderingAndroid");
|
|
150
132
|
|
|
151
133
|
flagValue = currentProvider_->disableMountItemReorderingAndroid();
|
|
152
134
|
disableMountItemReorderingAndroid_ = flagValue;
|
|
@@ -164,7 +146,7 @@ bool ReactNativeFeatureFlagsAccessor::disableOldAndroidAttachmentMetricsWorkarou
|
|
|
164
146
|
// be accessing the provider multiple times but the end state of this
|
|
165
147
|
// instance and the returned flag value would be the same.
|
|
166
148
|
|
|
167
|
-
markFlagAsAccessed(
|
|
149
|
+
markFlagAsAccessed(6, "disableOldAndroidAttachmentMetricsWorkarounds");
|
|
168
150
|
|
|
169
151
|
flagValue = currentProvider_->disableOldAndroidAttachmentMetricsWorkarounds();
|
|
170
152
|
disableOldAndroidAttachmentMetricsWorkarounds_ = flagValue;
|
|
@@ -182,7 +164,7 @@ bool ReactNativeFeatureFlagsAccessor::disableSubviewClippingAndroid() {
|
|
|
182
164
|
// be accessing the provider multiple times but the end state of this
|
|
183
165
|
// instance and the returned flag value would be the same.
|
|
184
166
|
|
|
185
|
-
markFlagAsAccessed(
|
|
167
|
+
markFlagAsAccessed(7, "disableSubviewClippingAndroid");
|
|
186
168
|
|
|
187
169
|
flagValue = currentProvider_->disableSubviewClippingAndroid();
|
|
188
170
|
disableSubviewClippingAndroid_ = flagValue;
|
|
@@ -200,7 +182,7 @@ bool ReactNativeFeatureFlagsAccessor::disableTextLayoutManagerCacheAndroid() {
|
|
|
200
182
|
// be accessing the provider multiple times but the end state of this
|
|
201
183
|
// instance and the returned flag value would be the same.
|
|
202
184
|
|
|
203
|
-
markFlagAsAccessed(
|
|
185
|
+
markFlagAsAccessed(8, "disableTextLayoutManagerCacheAndroid");
|
|
204
186
|
|
|
205
187
|
flagValue = currentProvider_->disableTextLayoutManagerCacheAndroid();
|
|
206
188
|
disableTextLayoutManagerCacheAndroid_ = flagValue;
|
|
@@ -218,7 +200,7 @@ bool ReactNativeFeatureFlagsAccessor::disableViewPreallocationAndroid() {
|
|
|
218
200
|
// be accessing the provider multiple times but the end state of this
|
|
219
201
|
// instance and the returned flag value would be the same.
|
|
220
202
|
|
|
221
|
-
markFlagAsAccessed(
|
|
203
|
+
markFlagAsAccessed(9, "disableViewPreallocationAndroid");
|
|
222
204
|
|
|
223
205
|
flagValue = currentProvider_->disableViewPreallocationAndroid();
|
|
224
206
|
disableViewPreallocationAndroid_ = flagValue;
|
|
@@ -236,7 +218,7 @@ bool ReactNativeFeatureFlagsAccessor::enableAccessibilityOrder() {
|
|
|
236
218
|
// be accessing the provider multiple times but the end state of this
|
|
237
219
|
// instance and the returned flag value would be the same.
|
|
238
220
|
|
|
239
|
-
markFlagAsAccessed(
|
|
221
|
+
markFlagAsAccessed(10, "enableAccessibilityOrder");
|
|
240
222
|
|
|
241
223
|
flagValue = currentProvider_->enableAccessibilityOrder();
|
|
242
224
|
enableAccessibilityOrder_ = flagValue;
|
|
@@ -254,7 +236,7 @@ bool ReactNativeFeatureFlagsAccessor::enableAccumulatedUpdatesInRawPropsAndroid(
|
|
|
254
236
|
// be accessing the provider multiple times but the end state of this
|
|
255
237
|
// instance and the returned flag value would be the same.
|
|
256
238
|
|
|
257
|
-
markFlagAsAccessed(
|
|
239
|
+
markFlagAsAccessed(11, "enableAccumulatedUpdatesInRawPropsAndroid");
|
|
258
240
|
|
|
259
241
|
flagValue = currentProvider_->enableAccumulatedUpdatesInRawPropsAndroid();
|
|
260
242
|
enableAccumulatedUpdatesInRawPropsAndroid_ = flagValue;
|
|
@@ -272,7 +254,7 @@ bool ReactNativeFeatureFlagsAccessor::enableAndroidAntialiasedBorderRadiusClippi
|
|
|
272
254
|
// be accessing the provider multiple times but the end state of this
|
|
273
255
|
// instance and the returned flag value would be the same.
|
|
274
256
|
|
|
275
|
-
markFlagAsAccessed(
|
|
257
|
+
markFlagAsAccessed(12, "enableAndroidAntialiasedBorderRadiusClipping");
|
|
276
258
|
|
|
277
259
|
flagValue = currentProvider_->enableAndroidAntialiasedBorderRadiusClipping();
|
|
278
260
|
enableAndroidAntialiasedBorderRadiusClipping_ = flagValue;
|
|
@@ -290,7 +272,7 @@ bool ReactNativeFeatureFlagsAccessor::enableAndroidLinearText() {
|
|
|
290
272
|
// be accessing the provider multiple times but the end state of this
|
|
291
273
|
// instance and the returned flag value would be the same.
|
|
292
274
|
|
|
293
|
-
markFlagAsAccessed(
|
|
275
|
+
markFlagAsAccessed(13, "enableAndroidLinearText");
|
|
294
276
|
|
|
295
277
|
flagValue = currentProvider_->enableAndroidLinearText();
|
|
296
278
|
enableAndroidLinearText_ = flagValue;
|
|
@@ -308,7 +290,7 @@ bool ReactNativeFeatureFlagsAccessor::enableAndroidTextMeasurementOptimizations(
|
|
|
308
290
|
// be accessing the provider multiple times but the end state of this
|
|
309
291
|
// instance and the returned flag value would be the same.
|
|
310
292
|
|
|
311
|
-
markFlagAsAccessed(
|
|
293
|
+
markFlagAsAccessed(14, "enableAndroidTextMeasurementOptimizations");
|
|
312
294
|
|
|
313
295
|
flagValue = currentProvider_->enableAndroidTextMeasurementOptimizations();
|
|
314
296
|
enableAndroidTextMeasurementOptimizations_ = flagValue;
|
|
@@ -326,7 +308,7 @@ bool ReactNativeFeatureFlagsAccessor::enableBridgelessArchitecture() {
|
|
|
326
308
|
// be accessing the provider multiple times but the end state of this
|
|
327
309
|
// instance and the returned flag value would be the same.
|
|
328
310
|
|
|
329
|
-
markFlagAsAccessed(
|
|
311
|
+
markFlagAsAccessed(15, "enableBridgelessArchitecture");
|
|
330
312
|
|
|
331
313
|
flagValue = currentProvider_->enableBridgelessArchitecture();
|
|
332
314
|
enableBridgelessArchitecture_ = flagValue;
|
|
@@ -344,7 +326,7 @@ bool ReactNativeFeatureFlagsAccessor::enableCppPropsIteratorSetter() {
|
|
|
344
326
|
// be accessing the provider multiple times but the end state of this
|
|
345
327
|
// instance and the returned flag value would be the same.
|
|
346
328
|
|
|
347
|
-
markFlagAsAccessed(
|
|
329
|
+
markFlagAsAccessed(16, "enableCppPropsIteratorSetter");
|
|
348
330
|
|
|
349
331
|
flagValue = currentProvider_->enableCppPropsIteratorSetter();
|
|
350
332
|
enableCppPropsIteratorSetter_ = flagValue;
|
|
@@ -362,7 +344,7 @@ bool ReactNativeFeatureFlagsAccessor::enableCustomFocusSearchOnClippedElementsAn
|
|
|
362
344
|
// be accessing the provider multiple times but the end state of this
|
|
363
345
|
// instance and the returned flag value would be the same.
|
|
364
346
|
|
|
365
|
-
markFlagAsAccessed(
|
|
347
|
+
markFlagAsAccessed(17, "enableCustomFocusSearchOnClippedElementsAndroid");
|
|
366
348
|
|
|
367
349
|
flagValue = currentProvider_->enableCustomFocusSearchOnClippedElementsAndroid();
|
|
368
350
|
enableCustomFocusSearchOnClippedElementsAndroid_ = flagValue;
|
|
@@ -380,7 +362,7 @@ bool ReactNativeFeatureFlagsAccessor::enableDestroyShadowTreeRevisionAsync() {
|
|
|
380
362
|
// be accessing the provider multiple times but the end state of this
|
|
381
363
|
// instance and the returned flag value would be the same.
|
|
382
364
|
|
|
383
|
-
markFlagAsAccessed(
|
|
365
|
+
markFlagAsAccessed(18, "enableDestroyShadowTreeRevisionAsync");
|
|
384
366
|
|
|
385
367
|
flagValue = currentProvider_->enableDestroyShadowTreeRevisionAsync();
|
|
386
368
|
enableDestroyShadowTreeRevisionAsync_ = flagValue;
|
|
@@ -398,7 +380,7 @@ bool ReactNativeFeatureFlagsAccessor::enableDoubleMeasurementFixAndroid() {
|
|
|
398
380
|
// be accessing the provider multiple times but the end state of this
|
|
399
381
|
// instance and the returned flag value would be the same.
|
|
400
382
|
|
|
401
|
-
markFlagAsAccessed(
|
|
383
|
+
markFlagAsAccessed(19, "enableDoubleMeasurementFixAndroid");
|
|
402
384
|
|
|
403
385
|
flagValue = currentProvider_->enableDoubleMeasurementFixAndroid();
|
|
404
386
|
enableDoubleMeasurementFixAndroid_ = flagValue;
|
|
@@ -416,7 +398,7 @@ bool ReactNativeFeatureFlagsAccessor::enableEagerMainQueueModulesOnIOS() {
|
|
|
416
398
|
// be accessing the provider multiple times but the end state of this
|
|
417
399
|
// instance and the returned flag value would be the same.
|
|
418
400
|
|
|
419
|
-
markFlagAsAccessed(
|
|
401
|
+
markFlagAsAccessed(20, "enableEagerMainQueueModulesOnIOS");
|
|
420
402
|
|
|
421
403
|
flagValue = currentProvider_->enableEagerMainQueueModulesOnIOS();
|
|
422
404
|
enableEagerMainQueueModulesOnIOS_ = flagValue;
|
|
@@ -434,7 +416,7 @@ bool ReactNativeFeatureFlagsAccessor::enableEagerRootViewAttachment() {
|
|
|
434
416
|
// be accessing the provider multiple times but the end state of this
|
|
435
417
|
// instance and the returned flag value would be the same.
|
|
436
418
|
|
|
437
|
-
markFlagAsAccessed(
|
|
419
|
+
markFlagAsAccessed(21, "enableEagerRootViewAttachment");
|
|
438
420
|
|
|
439
421
|
flagValue = currentProvider_->enableEagerRootViewAttachment();
|
|
440
422
|
enableEagerRootViewAttachment_ = flagValue;
|
|
@@ -452,7 +434,7 @@ bool ReactNativeFeatureFlagsAccessor::enableExclusivePropsUpdateAndroid() {
|
|
|
452
434
|
// be accessing the provider multiple times but the end state of this
|
|
453
435
|
// instance and the returned flag value would be the same.
|
|
454
436
|
|
|
455
|
-
markFlagAsAccessed(
|
|
437
|
+
markFlagAsAccessed(22, "enableExclusivePropsUpdateAndroid");
|
|
456
438
|
|
|
457
439
|
flagValue = currentProvider_->enableExclusivePropsUpdateAndroid();
|
|
458
440
|
enableExclusivePropsUpdateAndroid_ = flagValue;
|
|
@@ -470,7 +452,7 @@ bool ReactNativeFeatureFlagsAccessor::enableFabricLogs() {
|
|
|
470
452
|
// be accessing the provider multiple times but the end state of this
|
|
471
453
|
// instance and the returned flag value would be the same.
|
|
472
454
|
|
|
473
|
-
markFlagAsAccessed(
|
|
455
|
+
markFlagAsAccessed(23, "enableFabricLogs");
|
|
474
456
|
|
|
475
457
|
flagValue = currentProvider_->enableFabricLogs();
|
|
476
458
|
enableFabricLogs_ = flagValue;
|
|
@@ -488,7 +470,7 @@ bool ReactNativeFeatureFlagsAccessor::enableFabricRenderer() {
|
|
|
488
470
|
// be accessing the provider multiple times but the end state of this
|
|
489
471
|
// instance and the returned flag value would be the same.
|
|
490
472
|
|
|
491
|
-
markFlagAsAccessed(
|
|
473
|
+
markFlagAsAccessed(24, "enableFabricRenderer");
|
|
492
474
|
|
|
493
475
|
flagValue = currentProvider_->enableFabricRenderer();
|
|
494
476
|
enableFabricRenderer_ = flagValue;
|
|
@@ -506,7 +488,7 @@ bool ReactNativeFeatureFlagsAccessor::enableFontScaleChangesUpdatingLayout() {
|
|
|
506
488
|
// be accessing the provider multiple times but the end state of this
|
|
507
489
|
// instance and the returned flag value would be the same.
|
|
508
490
|
|
|
509
|
-
markFlagAsAccessed(
|
|
491
|
+
markFlagAsAccessed(25, "enableFontScaleChangesUpdatingLayout");
|
|
510
492
|
|
|
511
493
|
flagValue = currentProvider_->enableFontScaleChangesUpdatingLayout();
|
|
512
494
|
enableFontScaleChangesUpdatingLayout_ = flagValue;
|
|
@@ -524,7 +506,7 @@ bool ReactNativeFeatureFlagsAccessor::enableIOSTextBaselineOffsetPerLine() {
|
|
|
524
506
|
// be accessing the provider multiple times but the end state of this
|
|
525
507
|
// instance and the returned flag value would be the same.
|
|
526
508
|
|
|
527
|
-
markFlagAsAccessed(
|
|
509
|
+
markFlagAsAccessed(26, "enableIOSTextBaselineOffsetPerLine");
|
|
528
510
|
|
|
529
511
|
flagValue = currentProvider_->enableIOSTextBaselineOffsetPerLine();
|
|
530
512
|
enableIOSTextBaselineOffsetPerLine_ = flagValue;
|
|
@@ -542,7 +524,7 @@ bool ReactNativeFeatureFlagsAccessor::enableIOSViewClipToPaddingBox() {
|
|
|
542
524
|
// be accessing the provider multiple times but the end state of this
|
|
543
525
|
// instance and the returned flag value would be the same.
|
|
544
526
|
|
|
545
|
-
markFlagAsAccessed(
|
|
527
|
+
markFlagAsAccessed(27, "enableIOSViewClipToPaddingBox");
|
|
546
528
|
|
|
547
529
|
flagValue = currentProvider_->enableIOSViewClipToPaddingBox();
|
|
548
530
|
enableIOSViewClipToPaddingBox_ = flagValue;
|
|
@@ -560,7 +542,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImagePrefetchingAndroid() {
|
|
|
560
542
|
// be accessing the provider multiple times but the end state of this
|
|
561
543
|
// instance and the returned flag value would be the same.
|
|
562
544
|
|
|
563
|
-
markFlagAsAccessed(
|
|
545
|
+
markFlagAsAccessed(28, "enableImagePrefetchingAndroid");
|
|
564
546
|
|
|
565
547
|
flagValue = currentProvider_->enableImagePrefetchingAndroid();
|
|
566
548
|
enableImagePrefetchingAndroid_ = flagValue;
|
|
@@ -578,7 +560,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImagePrefetchingJNIBatchingAndroid()
|
|
|
578
560
|
// be accessing the provider multiple times but the end state of this
|
|
579
561
|
// instance and the returned flag value would be the same.
|
|
580
562
|
|
|
581
|
-
markFlagAsAccessed(
|
|
563
|
+
markFlagAsAccessed(29, "enableImagePrefetchingJNIBatchingAndroid");
|
|
582
564
|
|
|
583
565
|
flagValue = currentProvider_->enableImagePrefetchingJNIBatchingAndroid();
|
|
584
566
|
enableImagePrefetchingJNIBatchingAndroid_ = flagValue;
|
|
@@ -596,7 +578,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImagePrefetchingOnUiThreadAndroid()
|
|
|
596
578
|
// be accessing the provider multiple times but the end state of this
|
|
597
579
|
// instance and the returned flag value would be the same.
|
|
598
580
|
|
|
599
|
-
markFlagAsAccessed(
|
|
581
|
+
markFlagAsAccessed(30, "enableImagePrefetchingOnUiThreadAndroid");
|
|
600
582
|
|
|
601
583
|
flagValue = currentProvider_->enableImagePrefetchingOnUiThreadAndroid();
|
|
602
584
|
enableImagePrefetchingOnUiThreadAndroid_ = flagValue;
|
|
@@ -614,7 +596,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImmediateUpdateModeForContentOffsetC
|
|
|
614
596
|
// be accessing the provider multiple times but the end state of this
|
|
615
597
|
// instance and the returned flag value would be the same.
|
|
616
598
|
|
|
617
|
-
markFlagAsAccessed(
|
|
599
|
+
markFlagAsAccessed(31, "enableImmediateUpdateModeForContentOffsetChanges");
|
|
618
600
|
|
|
619
601
|
flagValue = currentProvider_->enableImmediateUpdateModeForContentOffsetChanges();
|
|
620
602
|
enableImmediateUpdateModeForContentOffsetChanges_ = flagValue;
|
|
@@ -632,7 +614,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImperativeFocus() {
|
|
|
632
614
|
// be accessing the provider multiple times but the end state of this
|
|
633
615
|
// instance and the returned flag value would be the same.
|
|
634
616
|
|
|
635
|
-
markFlagAsAccessed(
|
|
617
|
+
markFlagAsAccessed(32, "enableImperativeFocus");
|
|
636
618
|
|
|
637
619
|
flagValue = currentProvider_->enableImperativeFocus();
|
|
638
620
|
enableImperativeFocus_ = flagValue;
|
|
@@ -650,7 +632,7 @@ bool ReactNativeFeatureFlagsAccessor::enableInteropViewManagerClassLookUpOptimiz
|
|
|
650
632
|
// be accessing the provider multiple times but the end state of this
|
|
651
633
|
// instance and the returned flag value would be the same.
|
|
652
634
|
|
|
653
|
-
markFlagAsAccessed(
|
|
635
|
+
markFlagAsAccessed(33, "enableInteropViewManagerClassLookUpOptimizationIOS");
|
|
654
636
|
|
|
655
637
|
flagValue = currentProvider_->enableInteropViewManagerClassLookUpOptimizationIOS();
|
|
656
638
|
enableInteropViewManagerClassLookUpOptimizationIOS_ = flagValue;
|
|
@@ -668,7 +650,7 @@ bool ReactNativeFeatureFlagsAccessor::enableIntersectionObserverByDefault() {
|
|
|
668
650
|
// be accessing the provider multiple times but the end state of this
|
|
669
651
|
// instance and the returned flag value would be the same.
|
|
670
652
|
|
|
671
|
-
markFlagAsAccessed(
|
|
653
|
+
markFlagAsAccessed(34, "enableIntersectionObserverByDefault");
|
|
672
654
|
|
|
673
655
|
flagValue = currentProvider_->enableIntersectionObserverByDefault();
|
|
674
656
|
enableIntersectionObserverByDefault_ = flagValue;
|
|
@@ -686,7 +668,7 @@ bool ReactNativeFeatureFlagsAccessor::enableKeyEvents() {
|
|
|
686
668
|
// be accessing the provider multiple times but the end state of this
|
|
687
669
|
// instance and the returned flag value would be the same.
|
|
688
670
|
|
|
689
|
-
markFlagAsAccessed(
|
|
671
|
+
markFlagAsAccessed(35, "enableKeyEvents");
|
|
690
672
|
|
|
691
673
|
flagValue = currentProvider_->enableKeyEvents();
|
|
692
674
|
enableKeyEvents_ = flagValue;
|
|
@@ -704,7 +686,7 @@ bool ReactNativeFeatureFlagsAccessor::enableLayoutAnimationsOnAndroid() {
|
|
|
704
686
|
// be accessing the provider multiple times but the end state of this
|
|
705
687
|
// instance and the returned flag value would be the same.
|
|
706
688
|
|
|
707
|
-
markFlagAsAccessed(
|
|
689
|
+
markFlagAsAccessed(36, "enableLayoutAnimationsOnAndroid");
|
|
708
690
|
|
|
709
691
|
flagValue = currentProvider_->enableLayoutAnimationsOnAndroid();
|
|
710
692
|
enableLayoutAnimationsOnAndroid_ = flagValue;
|
|
@@ -722,7 +704,7 @@ bool ReactNativeFeatureFlagsAccessor::enableLayoutAnimationsOnIOS() {
|
|
|
722
704
|
// be accessing the provider multiple times but the end state of this
|
|
723
705
|
// instance and the returned flag value would be the same.
|
|
724
706
|
|
|
725
|
-
markFlagAsAccessed(
|
|
707
|
+
markFlagAsAccessed(37, "enableLayoutAnimationsOnIOS");
|
|
726
708
|
|
|
727
709
|
flagValue = currentProvider_->enableLayoutAnimationsOnIOS();
|
|
728
710
|
enableLayoutAnimationsOnIOS_ = flagValue;
|
|
@@ -740,7 +722,7 @@ bool ReactNativeFeatureFlagsAccessor::enableMainQueueCoordinatorOnIOS() {
|
|
|
740
722
|
// be accessing the provider multiple times but the end state of this
|
|
741
723
|
// instance and the returned flag value would be the same.
|
|
742
724
|
|
|
743
|
-
markFlagAsAccessed(
|
|
725
|
+
markFlagAsAccessed(38, "enableMainQueueCoordinatorOnIOS");
|
|
744
726
|
|
|
745
727
|
flagValue = currentProvider_->enableMainQueueCoordinatorOnIOS();
|
|
746
728
|
enableMainQueueCoordinatorOnIOS_ = flagValue;
|
|
@@ -758,7 +740,7 @@ bool ReactNativeFeatureFlagsAccessor::enableModuleArgumentNSNullConversionIOS()
|
|
|
758
740
|
// be accessing the provider multiple times but the end state of this
|
|
759
741
|
// instance and the returned flag value would be the same.
|
|
760
742
|
|
|
761
|
-
markFlagAsAccessed(
|
|
743
|
+
markFlagAsAccessed(39, "enableModuleArgumentNSNullConversionIOS");
|
|
762
744
|
|
|
763
745
|
flagValue = currentProvider_->enableModuleArgumentNSNullConversionIOS();
|
|
764
746
|
enableModuleArgumentNSNullConversionIOS_ = flagValue;
|
|
@@ -776,7 +758,7 @@ bool ReactNativeFeatureFlagsAccessor::enableNativeCSSParsing() {
|
|
|
776
758
|
// be accessing the provider multiple times but the end state of this
|
|
777
759
|
// instance and the returned flag value would be the same.
|
|
778
760
|
|
|
779
|
-
markFlagAsAccessed(
|
|
761
|
+
markFlagAsAccessed(40, "enableNativeCSSParsing");
|
|
780
762
|
|
|
781
763
|
flagValue = currentProvider_->enableNativeCSSParsing();
|
|
782
764
|
enableNativeCSSParsing_ = flagValue;
|
|
@@ -794,7 +776,7 @@ bool ReactNativeFeatureFlagsAccessor::enableNetworkEventReporting() {
|
|
|
794
776
|
// be accessing the provider multiple times but the end state of this
|
|
795
777
|
// instance and the returned flag value would be the same.
|
|
796
778
|
|
|
797
|
-
markFlagAsAccessed(
|
|
779
|
+
markFlagAsAccessed(41, "enableNetworkEventReporting");
|
|
798
780
|
|
|
799
781
|
flagValue = currentProvider_->enableNetworkEventReporting();
|
|
800
782
|
enableNetworkEventReporting_ = flagValue;
|
|
@@ -812,7 +794,7 @@ bool ReactNativeFeatureFlagsAccessor::enablePreparedTextLayout() {
|
|
|
812
794
|
// be accessing the provider multiple times but the end state of this
|
|
813
795
|
// instance and the returned flag value would be the same.
|
|
814
796
|
|
|
815
|
-
markFlagAsAccessed(
|
|
797
|
+
markFlagAsAccessed(42, "enablePreparedTextLayout");
|
|
816
798
|
|
|
817
799
|
flagValue = currentProvider_->enablePreparedTextLayout();
|
|
818
800
|
enablePreparedTextLayout_ = flagValue;
|
|
@@ -830,7 +812,7 @@ bool ReactNativeFeatureFlagsAccessor::enablePropsUpdateReconciliationAndroid() {
|
|
|
830
812
|
// be accessing the provider multiple times but the end state of this
|
|
831
813
|
// instance and the returned flag value would be the same.
|
|
832
814
|
|
|
833
|
-
markFlagAsAccessed(
|
|
815
|
+
markFlagAsAccessed(43, "enablePropsUpdateReconciliationAndroid");
|
|
834
816
|
|
|
835
817
|
flagValue = currentProvider_->enablePropsUpdateReconciliationAndroid();
|
|
836
818
|
enablePropsUpdateReconciliationAndroid_ = flagValue;
|
|
@@ -848,7 +830,7 @@ bool ReactNativeFeatureFlagsAccessor::enableSwiftUIBasedFilters() {
|
|
|
848
830
|
// be accessing the provider multiple times but the end state of this
|
|
849
831
|
// instance and the returned flag value would be the same.
|
|
850
832
|
|
|
851
|
-
markFlagAsAccessed(
|
|
833
|
+
markFlagAsAccessed(44, "enableSwiftUIBasedFilters");
|
|
852
834
|
|
|
853
835
|
flagValue = currentProvider_->enableSwiftUIBasedFilters();
|
|
854
836
|
enableSwiftUIBasedFilters_ = flagValue;
|
|
@@ -866,7 +848,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewCulling() {
|
|
|
866
848
|
// be accessing the provider multiple times but the end state of this
|
|
867
849
|
// instance and the returned flag value would be the same.
|
|
868
850
|
|
|
869
|
-
markFlagAsAccessed(
|
|
851
|
+
markFlagAsAccessed(45, "enableViewCulling");
|
|
870
852
|
|
|
871
853
|
flagValue = currentProvider_->enableViewCulling();
|
|
872
854
|
enableViewCulling_ = flagValue;
|
|
@@ -884,7 +866,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecycling() {
|
|
|
884
866
|
// be accessing the provider multiple times but the end state of this
|
|
885
867
|
// instance and the returned flag value would be the same.
|
|
886
868
|
|
|
887
|
-
markFlagAsAccessed(
|
|
869
|
+
markFlagAsAccessed(46, "enableViewRecycling");
|
|
888
870
|
|
|
889
871
|
flagValue = currentProvider_->enableViewRecycling();
|
|
890
872
|
enableViewRecycling_ = flagValue;
|
|
@@ -902,7 +884,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForImage() {
|
|
|
902
884
|
// be accessing the provider multiple times but the end state of this
|
|
903
885
|
// instance and the returned flag value would be the same.
|
|
904
886
|
|
|
905
|
-
markFlagAsAccessed(
|
|
887
|
+
markFlagAsAccessed(47, "enableViewRecyclingForImage");
|
|
906
888
|
|
|
907
889
|
flagValue = currentProvider_->enableViewRecyclingForImage();
|
|
908
890
|
enableViewRecyclingForImage_ = flagValue;
|
|
@@ -920,7 +902,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForScrollView() {
|
|
|
920
902
|
// be accessing the provider multiple times but the end state of this
|
|
921
903
|
// instance and the returned flag value would be the same.
|
|
922
904
|
|
|
923
|
-
markFlagAsAccessed(
|
|
905
|
+
markFlagAsAccessed(48, "enableViewRecyclingForScrollView");
|
|
924
906
|
|
|
925
907
|
flagValue = currentProvider_->enableViewRecyclingForScrollView();
|
|
926
908
|
enableViewRecyclingForScrollView_ = flagValue;
|
|
@@ -938,7 +920,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForText() {
|
|
|
938
920
|
// be accessing the provider multiple times but the end state of this
|
|
939
921
|
// instance and the returned flag value would be the same.
|
|
940
922
|
|
|
941
|
-
markFlagAsAccessed(
|
|
923
|
+
markFlagAsAccessed(49, "enableViewRecyclingForText");
|
|
942
924
|
|
|
943
925
|
flagValue = currentProvider_->enableViewRecyclingForText();
|
|
944
926
|
enableViewRecyclingForText_ = flagValue;
|
|
@@ -956,7 +938,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForView() {
|
|
|
956
938
|
// be accessing the provider multiple times but the end state of this
|
|
957
939
|
// instance and the returned flag value would be the same.
|
|
958
940
|
|
|
959
|
-
markFlagAsAccessed(
|
|
941
|
+
markFlagAsAccessed(50, "enableViewRecyclingForView");
|
|
960
942
|
|
|
961
943
|
flagValue = currentProvider_->enableViewRecyclingForView();
|
|
962
944
|
enableViewRecyclingForView_ = flagValue;
|
|
@@ -974,7 +956,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewContainerStateExperimenta
|
|
|
974
956
|
// be accessing the provider multiple times but the end state of this
|
|
975
957
|
// instance and the returned flag value would be the same.
|
|
976
958
|
|
|
977
|
-
markFlagAsAccessed(
|
|
959
|
+
markFlagAsAccessed(51, "enableVirtualViewContainerStateExperimental");
|
|
978
960
|
|
|
979
961
|
flagValue = currentProvider_->enableVirtualViewContainerStateExperimental();
|
|
980
962
|
enableVirtualViewContainerStateExperimental_ = flagValue;
|
|
@@ -992,7 +974,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewDebugFeatures() {
|
|
|
992
974
|
// be accessing the provider multiple times but the end state of this
|
|
993
975
|
// instance and the returned flag value would be the same.
|
|
994
976
|
|
|
995
|
-
markFlagAsAccessed(
|
|
977
|
+
markFlagAsAccessed(52, "enableVirtualViewDebugFeatures");
|
|
996
978
|
|
|
997
979
|
flagValue = currentProvider_->enableVirtualViewDebugFeatures();
|
|
998
980
|
enableVirtualViewDebugFeatures_ = flagValue;
|
|
@@ -1010,7 +992,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewRenderState() {
|
|
|
1010
992
|
// be accessing the provider multiple times but the end state of this
|
|
1011
993
|
// instance and the returned flag value would be the same.
|
|
1012
994
|
|
|
1013
|
-
markFlagAsAccessed(
|
|
995
|
+
markFlagAsAccessed(53, "enableVirtualViewRenderState");
|
|
1014
996
|
|
|
1015
997
|
flagValue = currentProvider_->enableVirtualViewRenderState();
|
|
1016
998
|
enableVirtualViewRenderState_ = flagValue;
|
|
@@ -1028,7 +1010,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewWindowFocusDetection() {
|
|
|
1028
1010
|
// be accessing the provider multiple times but the end state of this
|
|
1029
1011
|
// instance and the returned flag value would be the same.
|
|
1030
1012
|
|
|
1031
|
-
markFlagAsAccessed(
|
|
1013
|
+
markFlagAsAccessed(54, "enableVirtualViewWindowFocusDetection");
|
|
1032
1014
|
|
|
1033
1015
|
flagValue = currentProvider_->enableVirtualViewWindowFocusDetection();
|
|
1034
1016
|
enableVirtualViewWindowFocusDetection_ = flagValue;
|
|
@@ -1046,7 +1028,7 @@ bool ReactNativeFeatureFlagsAccessor::enableWebPerformanceAPIsByDefault() {
|
|
|
1046
1028
|
// be accessing the provider multiple times but the end state of this
|
|
1047
1029
|
// instance and the returned flag value would be the same.
|
|
1048
1030
|
|
|
1049
|
-
markFlagAsAccessed(
|
|
1031
|
+
markFlagAsAccessed(55, "enableWebPerformanceAPIsByDefault");
|
|
1050
1032
|
|
|
1051
1033
|
flagValue = currentProvider_->enableWebPerformanceAPIsByDefault();
|
|
1052
1034
|
enableWebPerformanceAPIsByDefault_ = flagValue;
|
|
@@ -1064,7 +1046,7 @@ bool ReactNativeFeatureFlagsAccessor::fixMappingOfEventPrioritiesBetweenFabricAn
|
|
|
1064
1046
|
// be accessing the provider multiple times but the end state of this
|
|
1065
1047
|
// instance and the returned flag value would be the same.
|
|
1066
1048
|
|
|
1067
|
-
markFlagAsAccessed(
|
|
1049
|
+
markFlagAsAccessed(56, "fixMappingOfEventPrioritiesBetweenFabricAndReact");
|
|
1068
1050
|
|
|
1069
1051
|
flagValue = currentProvider_->fixMappingOfEventPrioritiesBetweenFabricAndReact();
|
|
1070
1052
|
fixMappingOfEventPrioritiesBetweenFabricAndReact_ = flagValue;
|
|
@@ -1082,7 +1064,7 @@ bool ReactNativeFeatureFlagsAccessor::fuseboxAssertSingleHostState() {
|
|
|
1082
1064
|
// be accessing the provider multiple times but the end state of this
|
|
1083
1065
|
// instance and the returned flag value would be the same.
|
|
1084
1066
|
|
|
1085
|
-
markFlagAsAccessed(
|
|
1067
|
+
markFlagAsAccessed(57, "fuseboxAssertSingleHostState");
|
|
1086
1068
|
|
|
1087
1069
|
flagValue = currentProvider_->fuseboxAssertSingleHostState();
|
|
1088
1070
|
fuseboxAssertSingleHostState_ = flagValue;
|
|
@@ -1100,7 +1082,7 @@ bool ReactNativeFeatureFlagsAccessor::fuseboxEnabledRelease() {
|
|
|
1100
1082
|
// be accessing the provider multiple times but the end state of this
|
|
1101
1083
|
// instance and the returned flag value would be the same.
|
|
1102
1084
|
|
|
1103
|
-
markFlagAsAccessed(
|
|
1085
|
+
markFlagAsAccessed(58, "fuseboxEnabledRelease");
|
|
1104
1086
|
|
|
1105
1087
|
flagValue = currentProvider_->fuseboxEnabledRelease();
|
|
1106
1088
|
fuseboxEnabledRelease_ = flagValue;
|
|
@@ -1118,7 +1100,7 @@ bool ReactNativeFeatureFlagsAccessor::fuseboxNetworkInspectionEnabled() {
|
|
|
1118
1100
|
// be accessing the provider multiple times but the end state of this
|
|
1119
1101
|
// instance and the returned flag value would be the same.
|
|
1120
1102
|
|
|
1121
|
-
markFlagAsAccessed(
|
|
1103
|
+
markFlagAsAccessed(59, "fuseboxNetworkInspectionEnabled");
|
|
1122
1104
|
|
|
1123
1105
|
flagValue = currentProvider_->fuseboxNetworkInspectionEnabled();
|
|
1124
1106
|
fuseboxNetworkInspectionEnabled_ = flagValue;
|
|
@@ -1136,7 +1118,7 @@ bool ReactNativeFeatureFlagsAccessor::hideOffscreenVirtualViewsOnIOS() {
|
|
|
1136
1118
|
// be accessing the provider multiple times but the end state of this
|
|
1137
1119
|
// instance and the returned flag value would be the same.
|
|
1138
1120
|
|
|
1139
|
-
markFlagAsAccessed(
|
|
1121
|
+
markFlagAsAccessed(60, "hideOffscreenVirtualViewsOnIOS");
|
|
1140
1122
|
|
|
1141
1123
|
flagValue = currentProvider_->hideOffscreenVirtualViewsOnIOS();
|
|
1142
1124
|
hideOffscreenVirtualViewsOnIOS_ = flagValue;
|
|
@@ -1154,7 +1136,7 @@ bool ReactNativeFeatureFlagsAccessor::overrideBySynchronousMountPropsAtMountingA
|
|
|
1154
1136
|
// be accessing the provider multiple times but the end state of this
|
|
1155
1137
|
// instance and the returned flag value would be the same.
|
|
1156
1138
|
|
|
1157
|
-
markFlagAsAccessed(
|
|
1139
|
+
markFlagAsAccessed(61, "overrideBySynchronousMountPropsAtMountingAndroid");
|
|
1158
1140
|
|
|
1159
1141
|
flagValue = currentProvider_->overrideBySynchronousMountPropsAtMountingAndroid();
|
|
1160
1142
|
overrideBySynchronousMountPropsAtMountingAndroid_ = flagValue;
|
|
@@ -1172,7 +1154,7 @@ bool ReactNativeFeatureFlagsAccessor::perfIssuesEnabled() {
|
|
|
1172
1154
|
// be accessing the provider multiple times but the end state of this
|
|
1173
1155
|
// instance and the returned flag value would be the same.
|
|
1174
1156
|
|
|
1175
|
-
markFlagAsAccessed(
|
|
1157
|
+
markFlagAsAccessed(62, "perfIssuesEnabled");
|
|
1176
1158
|
|
|
1177
1159
|
flagValue = currentProvider_->perfIssuesEnabled();
|
|
1178
1160
|
perfIssuesEnabled_ = flagValue;
|
|
@@ -1190,7 +1172,7 @@ bool ReactNativeFeatureFlagsAccessor::perfMonitorV2Enabled() {
|
|
|
1190
1172
|
// be accessing the provider multiple times but the end state of this
|
|
1191
1173
|
// instance and the returned flag value would be the same.
|
|
1192
1174
|
|
|
1193
|
-
markFlagAsAccessed(
|
|
1175
|
+
markFlagAsAccessed(63, "perfMonitorV2Enabled");
|
|
1194
1176
|
|
|
1195
1177
|
flagValue = currentProvider_->perfMonitorV2Enabled();
|
|
1196
1178
|
perfMonitorV2Enabled_ = flagValue;
|
|
@@ -1208,7 +1190,7 @@ double ReactNativeFeatureFlagsAccessor::preparedTextCacheSize() {
|
|
|
1208
1190
|
// be accessing the provider multiple times but the end state of this
|
|
1209
1191
|
// instance and the returned flag value would be the same.
|
|
1210
1192
|
|
|
1211
|
-
markFlagAsAccessed(
|
|
1193
|
+
markFlagAsAccessed(64, "preparedTextCacheSize");
|
|
1212
1194
|
|
|
1213
1195
|
flagValue = currentProvider_->preparedTextCacheSize();
|
|
1214
1196
|
preparedTextCacheSize_ = flagValue;
|
|
@@ -1226,7 +1208,7 @@ bool ReactNativeFeatureFlagsAccessor::preventShadowTreeCommitExhaustion() {
|
|
|
1226
1208
|
// be accessing the provider multiple times but the end state of this
|
|
1227
1209
|
// instance and the returned flag value would be the same.
|
|
1228
1210
|
|
|
1229
|
-
markFlagAsAccessed(
|
|
1211
|
+
markFlagAsAccessed(65, "preventShadowTreeCommitExhaustion");
|
|
1230
1212
|
|
|
1231
1213
|
flagValue = currentProvider_->preventShadowTreeCommitExhaustion();
|
|
1232
1214
|
preventShadowTreeCommitExhaustion_ = flagValue;
|
|
@@ -1244,7 +1226,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldPressibilityUseW3CPointerEventsForHo
|
|
|
1244
1226
|
// be accessing the provider multiple times but the end state of this
|
|
1245
1227
|
// instance and the returned flag value would be the same.
|
|
1246
1228
|
|
|
1247
|
-
markFlagAsAccessed(
|
|
1229
|
+
markFlagAsAccessed(66, "shouldPressibilityUseW3CPointerEventsForHover");
|
|
1248
1230
|
|
|
1249
1231
|
flagValue = currentProvider_->shouldPressibilityUseW3CPointerEventsForHover();
|
|
1250
1232
|
shouldPressibilityUseW3CPointerEventsForHover_ = flagValue;
|
|
@@ -1262,7 +1244,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldResetClickableWhenRecyclingView() {
|
|
|
1262
1244
|
// be accessing the provider multiple times but the end state of this
|
|
1263
1245
|
// instance and the returned flag value would be the same.
|
|
1264
1246
|
|
|
1265
|
-
markFlagAsAccessed(
|
|
1247
|
+
markFlagAsAccessed(67, "shouldResetClickableWhenRecyclingView");
|
|
1266
1248
|
|
|
1267
1249
|
flagValue = currentProvider_->shouldResetClickableWhenRecyclingView();
|
|
1268
1250
|
shouldResetClickableWhenRecyclingView_ = flagValue;
|
|
@@ -1280,7 +1262,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldResetOnClickListenerWhenRecyclingVie
|
|
|
1280
1262
|
// be accessing the provider multiple times but the end state of this
|
|
1281
1263
|
// instance and the returned flag value would be the same.
|
|
1282
1264
|
|
|
1283
|
-
markFlagAsAccessed(
|
|
1265
|
+
markFlagAsAccessed(68, "shouldResetOnClickListenerWhenRecyclingView");
|
|
1284
1266
|
|
|
1285
1267
|
flagValue = currentProvider_->shouldResetOnClickListenerWhenRecyclingView();
|
|
1286
1268
|
shouldResetOnClickListenerWhenRecyclingView_ = flagValue;
|
|
@@ -1298,7 +1280,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldSetEnabledBasedOnAccessibilityState(
|
|
|
1298
1280
|
// be accessing the provider multiple times but the end state of this
|
|
1299
1281
|
// instance and the returned flag value would be the same.
|
|
1300
1282
|
|
|
1301
|
-
markFlagAsAccessed(
|
|
1283
|
+
markFlagAsAccessed(69, "shouldSetEnabledBasedOnAccessibilityState");
|
|
1302
1284
|
|
|
1303
1285
|
flagValue = currentProvider_->shouldSetEnabledBasedOnAccessibilityState();
|
|
1304
1286
|
shouldSetEnabledBasedOnAccessibilityState_ = flagValue;
|
|
@@ -1316,7 +1298,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldSetIsClickableByDefault() {
|
|
|
1316
1298
|
// be accessing the provider multiple times but the end state of this
|
|
1317
1299
|
// instance and the returned flag value would be the same.
|
|
1318
1300
|
|
|
1319
|
-
markFlagAsAccessed(
|
|
1301
|
+
markFlagAsAccessed(70, "shouldSetIsClickableByDefault");
|
|
1320
1302
|
|
|
1321
1303
|
flagValue = currentProvider_->shouldSetIsClickableByDefault();
|
|
1322
1304
|
shouldSetIsClickableByDefault_ = flagValue;
|
|
@@ -1334,7 +1316,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldTriggerResponderTransferOnScrollAndr
|
|
|
1334
1316
|
// be accessing the provider multiple times but the end state of this
|
|
1335
1317
|
// instance and the returned flag value would be the same.
|
|
1336
1318
|
|
|
1337
|
-
markFlagAsAccessed(
|
|
1319
|
+
markFlagAsAccessed(71, "shouldTriggerResponderTransferOnScrollAndroid");
|
|
1338
1320
|
|
|
1339
1321
|
flagValue = currentProvider_->shouldTriggerResponderTransferOnScrollAndroid();
|
|
1340
1322
|
shouldTriggerResponderTransferOnScrollAndroid_ = flagValue;
|
|
@@ -1352,7 +1334,7 @@ bool ReactNativeFeatureFlagsAccessor::skipActivityIdentityAssertionOnHostPause()
|
|
|
1352
1334
|
// be accessing the provider multiple times but the end state of this
|
|
1353
1335
|
// instance and the returned flag value would be the same.
|
|
1354
1336
|
|
|
1355
|
-
markFlagAsAccessed(
|
|
1337
|
+
markFlagAsAccessed(72, "skipActivityIdentityAssertionOnHostPause");
|
|
1356
1338
|
|
|
1357
1339
|
flagValue = currentProvider_->skipActivityIdentityAssertionOnHostPause();
|
|
1358
1340
|
skipActivityIdentityAssertionOnHostPause_ = flagValue;
|
|
@@ -1370,7 +1352,7 @@ bool ReactNativeFeatureFlagsAccessor::traceTurboModulePromiseRejectionsOnAndroid
|
|
|
1370
1352
|
// be accessing the provider multiple times but the end state of this
|
|
1371
1353
|
// instance and the returned flag value would be the same.
|
|
1372
1354
|
|
|
1373
|
-
markFlagAsAccessed(
|
|
1355
|
+
markFlagAsAccessed(73, "traceTurboModulePromiseRejectionsOnAndroid");
|
|
1374
1356
|
|
|
1375
1357
|
flagValue = currentProvider_->traceTurboModulePromiseRejectionsOnAndroid();
|
|
1376
1358
|
traceTurboModulePromiseRejectionsOnAndroid_ = flagValue;
|
|
@@ -1388,7 +1370,7 @@ bool ReactNativeFeatureFlagsAccessor::updateRuntimeShadowNodeReferencesOnCommit(
|
|
|
1388
1370
|
// be accessing the provider multiple times but the end state of this
|
|
1389
1371
|
// instance and the returned flag value would be the same.
|
|
1390
1372
|
|
|
1391
|
-
markFlagAsAccessed(
|
|
1373
|
+
markFlagAsAccessed(74, "updateRuntimeShadowNodeReferencesOnCommit");
|
|
1392
1374
|
|
|
1393
1375
|
flagValue = currentProvider_->updateRuntimeShadowNodeReferencesOnCommit();
|
|
1394
1376
|
updateRuntimeShadowNodeReferencesOnCommit_ = flagValue;
|
|
@@ -1406,7 +1388,7 @@ bool ReactNativeFeatureFlagsAccessor::useAlwaysAvailableJSErrorHandling() {
|
|
|
1406
1388
|
// be accessing the provider multiple times but the end state of this
|
|
1407
1389
|
// instance and the returned flag value would be the same.
|
|
1408
1390
|
|
|
1409
|
-
markFlagAsAccessed(
|
|
1391
|
+
markFlagAsAccessed(75, "useAlwaysAvailableJSErrorHandling");
|
|
1410
1392
|
|
|
1411
1393
|
flagValue = currentProvider_->useAlwaysAvailableJSErrorHandling();
|
|
1412
1394
|
useAlwaysAvailableJSErrorHandling_ = flagValue;
|
|
@@ -1424,7 +1406,7 @@ bool ReactNativeFeatureFlagsAccessor::useFabricInterop() {
|
|
|
1424
1406
|
// be accessing the provider multiple times but the end state of this
|
|
1425
1407
|
// instance and the returned flag value would be the same.
|
|
1426
1408
|
|
|
1427
|
-
markFlagAsAccessed(
|
|
1409
|
+
markFlagAsAccessed(76, "useFabricInterop");
|
|
1428
1410
|
|
|
1429
1411
|
flagValue = currentProvider_->useFabricInterop();
|
|
1430
1412
|
useFabricInterop_ = flagValue;
|
|
@@ -1442,7 +1424,7 @@ bool ReactNativeFeatureFlagsAccessor::useNativeEqualsInNativeReadableArrayAndroi
|
|
|
1442
1424
|
// be accessing the provider multiple times but the end state of this
|
|
1443
1425
|
// instance and the returned flag value would be the same.
|
|
1444
1426
|
|
|
1445
|
-
markFlagAsAccessed(
|
|
1427
|
+
markFlagAsAccessed(77, "useNativeEqualsInNativeReadableArrayAndroid");
|
|
1446
1428
|
|
|
1447
1429
|
flagValue = currentProvider_->useNativeEqualsInNativeReadableArrayAndroid();
|
|
1448
1430
|
useNativeEqualsInNativeReadableArrayAndroid_ = flagValue;
|
|
@@ -1460,7 +1442,7 @@ bool ReactNativeFeatureFlagsAccessor::useNativeTransformHelperAndroid() {
|
|
|
1460
1442
|
// be accessing the provider multiple times but the end state of this
|
|
1461
1443
|
// instance and the returned flag value would be the same.
|
|
1462
1444
|
|
|
1463
|
-
markFlagAsAccessed(
|
|
1445
|
+
markFlagAsAccessed(78, "useNativeTransformHelperAndroid");
|
|
1464
1446
|
|
|
1465
1447
|
flagValue = currentProvider_->useNativeTransformHelperAndroid();
|
|
1466
1448
|
useNativeTransformHelperAndroid_ = flagValue;
|
|
@@ -1478,7 +1460,7 @@ bool ReactNativeFeatureFlagsAccessor::useNativeViewConfigsInBridgelessMode() {
|
|
|
1478
1460
|
// be accessing the provider multiple times but the end state of this
|
|
1479
1461
|
// instance and the returned flag value would be the same.
|
|
1480
1462
|
|
|
1481
|
-
markFlagAsAccessed(
|
|
1463
|
+
markFlagAsAccessed(79, "useNativeViewConfigsInBridgelessMode");
|
|
1482
1464
|
|
|
1483
1465
|
flagValue = currentProvider_->useNativeViewConfigsInBridgelessMode();
|
|
1484
1466
|
useNativeViewConfigsInBridgelessMode_ = flagValue;
|
|
@@ -1496,7 +1478,7 @@ bool ReactNativeFeatureFlagsAccessor::useRawPropsJsiValue() {
|
|
|
1496
1478
|
// be accessing the provider multiple times but the end state of this
|
|
1497
1479
|
// instance and the returned flag value would be the same.
|
|
1498
1480
|
|
|
1499
|
-
markFlagAsAccessed(
|
|
1481
|
+
markFlagAsAccessed(80, "useRawPropsJsiValue");
|
|
1500
1482
|
|
|
1501
1483
|
flagValue = currentProvider_->useRawPropsJsiValue();
|
|
1502
1484
|
useRawPropsJsiValue_ = flagValue;
|
|
@@ -1514,7 +1496,7 @@ bool ReactNativeFeatureFlagsAccessor::useShadowNodeStateOnClone() {
|
|
|
1514
1496
|
// be accessing the provider multiple times but the end state of this
|
|
1515
1497
|
// instance and the returned flag value would be the same.
|
|
1516
1498
|
|
|
1517
|
-
markFlagAsAccessed(
|
|
1499
|
+
markFlagAsAccessed(81, "useShadowNodeStateOnClone");
|
|
1518
1500
|
|
|
1519
1501
|
flagValue = currentProvider_->useShadowNodeStateOnClone();
|
|
1520
1502
|
useShadowNodeStateOnClone_ = flagValue;
|
|
@@ -1532,7 +1514,7 @@ bool ReactNativeFeatureFlagsAccessor::useSharedAnimatedBackend() {
|
|
|
1532
1514
|
// be accessing the provider multiple times but the end state of this
|
|
1533
1515
|
// instance and the returned flag value would be the same.
|
|
1534
1516
|
|
|
1535
|
-
markFlagAsAccessed(
|
|
1517
|
+
markFlagAsAccessed(82, "useSharedAnimatedBackend");
|
|
1536
1518
|
|
|
1537
1519
|
flagValue = currentProvider_->useSharedAnimatedBackend();
|
|
1538
1520
|
useSharedAnimatedBackend_ = flagValue;
|
|
@@ -1550,7 +1532,7 @@ bool ReactNativeFeatureFlagsAccessor::useTraitHiddenOnAndroid() {
|
|
|
1550
1532
|
// be accessing the provider multiple times but the end state of this
|
|
1551
1533
|
// instance and the returned flag value would be the same.
|
|
1552
1534
|
|
|
1553
|
-
markFlagAsAccessed(
|
|
1535
|
+
markFlagAsAccessed(83, "useTraitHiddenOnAndroid");
|
|
1554
1536
|
|
|
1555
1537
|
flagValue = currentProvider_->useTraitHiddenOnAndroid();
|
|
1556
1538
|
useTraitHiddenOnAndroid_ = flagValue;
|
|
@@ -1568,7 +1550,7 @@ bool ReactNativeFeatureFlagsAccessor::useTurboModuleInterop() {
|
|
|
1568
1550
|
// be accessing the provider multiple times but the end state of this
|
|
1569
1551
|
// instance and the returned flag value would be the same.
|
|
1570
1552
|
|
|
1571
|
-
markFlagAsAccessed(
|
|
1553
|
+
markFlagAsAccessed(84, "useTurboModuleInterop");
|
|
1572
1554
|
|
|
1573
1555
|
flagValue = currentProvider_->useTurboModuleInterop();
|
|
1574
1556
|
useTurboModuleInterop_ = flagValue;
|
|
@@ -1586,7 +1568,7 @@ bool ReactNativeFeatureFlagsAccessor::useTurboModules() {
|
|
|
1586
1568
|
// be accessing the provider multiple times but the end state of this
|
|
1587
1569
|
// instance and the returned flag value would be the same.
|
|
1588
1570
|
|
|
1589
|
-
markFlagAsAccessed(
|
|
1571
|
+
markFlagAsAccessed(85, "useTurboModules");
|
|
1590
1572
|
|
|
1591
1573
|
flagValue = currentProvider_->useTurboModules();
|
|
1592
1574
|
useTurboModules_ = flagValue;
|
|
@@ -1604,7 +1586,7 @@ double ReactNativeFeatureFlagsAccessor::viewCullingOutsetRatio() {
|
|
|
1604
1586
|
// be accessing the provider multiple times but the end state of this
|
|
1605
1587
|
// instance and the returned flag value would be the same.
|
|
1606
1588
|
|
|
1607
|
-
markFlagAsAccessed(
|
|
1589
|
+
markFlagAsAccessed(86, "viewCullingOutsetRatio");
|
|
1608
1590
|
|
|
1609
1591
|
flagValue = currentProvider_->viewCullingOutsetRatio();
|
|
1610
1592
|
viewCullingOutsetRatio_ = flagValue;
|
|
@@ -1622,7 +1604,7 @@ double ReactNativeFeatureFlagsAccessor::virtualViewHysteresisRatio() {
|
|
|
1622
1604
|
// be accessing the provider multiple times but the end state of this
|
|
1623
1605
|
// instance and the returned flag value would be the same.
|
|
1624
1606
|
|
|
1625
|
-
markFlagAsAccessed(
|
|
1607
|
+
markFlagAsAccessed(87, "virtualViewHysteresisRatio");
|
|
1626
1608
|
|
|
1627
1609
|
flagValue = currentProvider_->virtualViewHysteresisRatio();
|
|
1628
1610
|
virtualViewHysteresisRatio_ = flagValue;
|
|
@@ -1640,7 +1622,7 @@ double ReactNativeFeatureFlagsAccessor::virtualViewPrerenderRatio() {
|
|
|
1640
1622
|
// be accessing the provider multiple times but the end state of this
|
|
1641
1623
|
// instance and the returned flag value would be the same.
|
|
1642
1624
|
|
|
1643
|
-
markFlagAsAccessed(
|
|
1625
|
+
markFlagAsAccessed(88, "virtualViewPrerenderRatio");
|
|
1644
1626
|
|
|
1645
1627
|
flagValue = currentProvider_->virtualViewPrerenderRatio();
|
|
1646
1628
|
virtualViewPrerenderRatio_ = flagValue;
|