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

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

Issue 418203002: Implement more fixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for review comments Created 6 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 | « no previous file | pkg/analysis_server/test/edit/fix_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 68a3dbc6f91fa439cdf761eabc0d090395ad5763..8bcc01c76428257e6ad11984d9f29802b1954911 100644
--- a/pkg/analysis_server/lib/src/edit/edit_domain.dart
+++ b/pkg/analysis_server/lib/src/edit/edit_domain.dart
@@ -95,7 +95,7 @@ class EditDomainHandler implements RequestHandler {
engine.AnalysisErrorInfo errorInfo = server.getErrors(file);
if (errorInfo != null) {
for (engine.AnalysisError error in errorInfo.errors) {
- List<Fix> fixes = computeFixes(searchEngine, file, unit, error);
+ List<Fix> fixes = computeFixes(searchEngine, unit, error);
if (fixes.isNotEmpty) {
AnalysisError serverError =
new AnalysisError.fromEngine(errorInfo.lineInfo, error);
« no previous file with comments | « no previous file | pkg/analysis_server/test/edit/fix_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698