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

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

Issue 854493002: Have the analysis server not send error notifications when NO_ERROR_NOTIFICATION has been set to tr… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: update flag description Created 5 years, 11 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 1ed517c117abd0b1fde88b5f321232f11bfe2101..92c4ecc22db704a8bd0fcb17ae7f07a12a04872d 100644
--- a/pkg/analysis_server/lib/src/server/driver.dart
+++ b/pkg/analysis_server/lib/src/server/driver.dart
@@ -193,6 +193,7 @@ class Driver implements ServerStarter {
results[ENABLE_INCREMENTAL_RESOLUTION_API];
analysisServerOptions.enableIncrementalResolutionValidation =
results[INCREMENTAL_RESOLUTION_VALIDATION];
+ analysisServerOptions.noErrorNotification = results[NO_ERROR_NOTIFICATION];
_initIncrementalLogger(results[INCREMENTAL_RESOLUTION_LOG]);
@@ -312,7 +313,7 @@ class Driver implements ServerStarter {
parser.addFlag(
NO_ERROR_NOTIFICATION,
help:
- "disable sending all analysis error notifications to the server (not yet implemented)",
+ "disable sending all analysis error notifications to the server",
defaultsTo: false,
negatable: false);
« 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