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

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

Issue 2768003003: IdeOptions awareness for Driver (for access via IDEA registry). (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | pkg/analysis_server/lib/src/ide_options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/analysis_server.dart
diff --git a/pkg/analysis_server/lib/src/analysis_server.dart b/pkg/analysis_server/lib/src/analysis_server.dart
index b440939d35131ed11401dae1f6570b126887bac5..64164b21c9bd9b3f41a2513d8c71615ce1fb4b40 100644
--- a/pkg/analysis_server/lib/src/analysis_server.dart
+++ b/pkg/analysis_server/lib/src/analysis_server.dart
@@ -467,7 +467,7 @@ class AnalysisServer {
channel.sendNotification(notification);
channel.listen(handleRequest, onDone: done, onError: error);
handlers = serverPlugin.createDomains(this);
- ideOptions = new IdeOptionsImpl();
+ ideOptions = new IdeOptions.from(options);
}
/**
@@ -1857,6 +1857,8 @@ class AnalysisServerOptions {
bool useAnalysisHighlight2 = false;
String fileReadMode = 'as-is';
String newAnalysisDriverLog;
+ // IDE options
+ bool enableVerboseFlutterCompletions = false;
}
/**
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/ide_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698