Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(625)

Unified Diff: pkg/analysis_server/lib/src/server/driver.dart

Issue 2698133002: Remove PubSummaryManager. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analyzer/lib/src/context/builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analyzer/lib/src/context/builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698