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

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

Issue 2843093002: Send re-analyze requests to plugins (Closed)
Patch Set: Created 3 years, 8 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
Index: pkg/analysis_server/lib/src/edit/edit_domain.dart
diff --git a/pkg/analysis_server/lib/src/edit/edit_domain.dart b/pkg/analysis_server/lib/src/edit/edit_domain.dart
index 0330990721bab60bfae1f8aae4f8fe8d788b3079..13d567c05ed136677dcf21a9227153bb601f3070 100644
--- a/pkg/analysis_server/lib/src/edit/edit_domain.dart
+++ b/pkg/analysis_server/lib/src/edit/edit_domain.dart
@@ -157,7 +157,7 @@ class EditDomainHandler extends AbstractRequestHandler {
new plugin.EditGetAssistsParams(file, offset, length);
Map<PluginInfo, Future<plugin.Response>> pluginFutures = server
.pluginManager
- .broadcastRequest(driver.contextRoot, requestParams);
+ .broadcastRequest(requestParams, contextRoot: driver.contextRoot);
//
// Compute fixes associated with server-generated errors.
//
@@ -231,7 +231,7 @@ class EditDomainHandler extends AbstractRequestHandler {
new plugin.EditGetFixesParams(file, offset);
Map<PluginInfo, Future<plugin.Response>> pluginFutures = server
.pluginManager
- .broadcastRequest(driver.contextRoot, requestParams);
+ .broadcastRequest(requestParams, contextRoot: driver.contextRoot);
//
// Compute fixes associated with server-generated errors.
//
« no previous file with comments | « pkg/analysis_server/lib/src/domain_analysis.dart ('k') | pkg/analysis_server/lib/src/plugin/plugin_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698