Unverified Commit 8974cef1 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] enable experimental invaldation everywhere (#76618)

parent 354bd53f
...@@ -52,7 +52,7 @@ abstract class FeatureFlags { ...@@ -52,7 +52,7 @@ abstract class FeatureFlags {
bool get isSingleWidgetReloadEnabled => false; bool get isSingleWidgetReloadEnabled => false;
/// Whether the CFE experimental invalidation strategy is enabled. /// Whether the CFE experimental invalidation strategy is enabled.
bool get isExperimentalInvalidationStrategyEnabled => false; bool get isExperimentalInvalidationStrategyEnabled => true;
/// Whether a particular feature is enabled for the current channel. /// Whether a particular feature is enabled for the current channel.
/// ///
...@@ -324,15 +324,15 @@ const Feature experimentalInvalidationStrategy = Feature( ...@@ -324,15 +324,15 @@ const Feature experimentalInvalidationStrategy = Feature(
), ),
dev: FeatureChannelSetting( dev: FeatureChannelSetting(
available: true, available: true,
enabledByDefault: false, enabledByDefault: true,
), ),
beta: FeatureChannelSetting( beta: FeatureChannelSetting(
available: true, available: true,
enabledByDefault: false, enabledByDefault: true,
), ),
stable: FeatureChannelSetting( stable: FeatureChannelSetting(
available: false, available: true,
enabledByDefault: false, enabledByDefault: true,
), ),
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment