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

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

Issue 2974013002: remove unused analysis server flag (Closed)
Patch Set: rebase Created 3 years, 5 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') | no next file » | 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 cd843de0c537f028f941ed1264678d64335c1267..8691f9b0ac11938bf29c255bc41560116445f740 100644
--- a/pkg/analysis_server/lib/src/server/driver.dart
+++ b/pkg/analysis_server/lib/src/server/driver.dart
@@ -235,12 +235,6 @@ class Driver implements ServerStarter {
static const String NEW_ANALYSIS_DRIVER_LOG = 'new-analysis-driver-log';
/**
- * The name of the option used to enable verbose Flutter completion code generation.
- */
- static const String VERBOSE_FLUTTER_COMPLETIONS =
- 'verbose-flutter-completions';
-
- /**
* The name of the flag used to enable version 2 of semantic highlight
* notification.
*/
@@ -314,8 +308,6 @@ class Driver implements ServerStarter {
results[NEW_ANALYSIS_DRIVER_LOG];
analysisServerOptions.clientId = results[CLIENT_ID];
analysisServerOptions.clientVersion = results[CLIENT_VERSION];
- analysisServerOptions.enableVerboseFlutterCompletions =
- results[VERBOSE_FLUTTER_COMPLETIONS];
ContextBuilderOptions.flutterRepo = results[FLUTTER_REPO];
@@ -511,8 +503,6 @@ class Driver implements ServerStarter {
negatable: false);
parser.addOption(NEW_ANALYSIS_DRIVER_LOG,
help: "set a destination for the new analysis driver's log");
- parser.addFlag(VERBOSE_FLUTTER_COMPLETIONS,
- help: "enable verbose code completion for Flutter (experimental)");
parser.addFlag(ANALYTICS_FLAG,
help: 'enable or disable sending analytics information to Google');
parser.addFlag(SUPPRESS_ANALYTICS_FLAG,
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698