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

Unified Diff: pkg/analysis_server/lib/src/services/correction/assist.dart

Issue 1091003002: Rename method for consistency (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
« no previous file with comments | « pkg/analysis_server/lib/edit/assist/assist_dart.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/services/correction/assist.dart
diff --git a/pkg/analysis_server/lib/src/services/correction/assist.dart b/pkg/analysis_server/lib/src/services/correction/assist.dart
index bcab65d3ab291a6eb563bf980af08babbab8f1f9..08d28b1979399fcb771b5949207f2fcce594031d 100644
--- a/pkg/analysis_server/lib/src/services/correction/assist.dart
+++ b/pkg/analysis_server/lib/src/services/correction/assist.dart
@@ -23,7 +23,7 @@ List<Assist> computeAssists(ServerPlugin plugin, AnalysisContext context,
for (AssistContributor contributor in contributors) {
try {
List<Assist> contributedAssists =
- contributor.compute(context, source, offset, length);
+ contributor.computeAssists(context, source, offset, length);
if (contributedAssists != null) {
assists.addAll(contributedAssists);
}
« no previous file with comments | « pkg/analysis_server/lib/edit/assist/assist_dart.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698