| Index: pkg/analysis_server/lib/src/server/driver.dart
|
| diff --git a/pkg/analysis_server/lib/src/server/driver.dart b/pkg/analysis_server/lib/src/server/driver.dart
|
| index ea6074e7230f46bec9422c4db4c8223f8af4c603..44e7c19e3d9bb676dd2e0a18865a8cd5fecae92c 100644
|
| --- a/pkg/analysis_server/lib/src/server/driver.dart
|
| +++ b/pkg/analysis_server/lib/src/server/driver.dart
|
| @@ -248,11 +248,6 @@ class Driver implements ServerStarter {
|
| 'disable-new-analysis-driver';
|
|
|
| /**
|
| - * The name of the option used to enable using pub summary manager.
|
| - */
|
| - static const String ENABLE_PUB_SUMMARY_MANAGER = 'enable-pub-summary-manager';
|
| -
|
| - /**
|
| * The name of the option used to enable fined grained invalidation.
|
| */
|
| static const String FINER_GRAINED_INVALIDATION = 'finer-grained-invalidation';
|
| @@ -395,8 +390,6 @@ class Driver implements ServerStarter {
|
| results[INCREMENTAL_RESOLUTION_VALIDATION];
|
| analysisServerOptions.enableNewAnalysisDriver =
|
| !results[DISABLE_NEW_ANALYSIS_DRIVER];
|
| - analysisServerOptions.enablePubSummaryManager =
|
| - results[ENABLE_PUB_SUMMARY_MANAGER];
|
| analysisServerOptions.finerGrainedInvalidation =
|
| results[FINER_GRAINED_INVALIDATION];
|
| analysisServerOptions.noErrorNotification = results[NO_ERROR_NOTIFICATION];
|
| @@ -548,10 +541,6 @@ class Driver implements ServerStarter {
|
| help: "disable using new analysis driver",
|
| defaultsTo: false,
|
| negatable: false);
|
| - parser.addFlag(ENABLE_PUB_SUMMARY_MANAGER,
|
| - help: "enable using summaries for pub cache packages",
|
| - defaultsTo: false,
|
| - negatable: false);
|
| parser.addFlag(FINER_GRAINED_INVALIDATION,
|
| help: "enable finer grained invalidation",
|
| defaultsTo: false,
|
|
|