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

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

Issue 2879273002: Make server use the common protocol classes (Closed)
Patch Set: Created 3 years, 7 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/plugin/result_merger.dart
diff --git a/pkg/analysis_server/lib/src/plugin/result_merger.dart b/pkg/analysis_server/lib/src/plugin/result_merger.dart
index e83cc61ed27b3ce615a4912ba737655f566bfa6a..5b262c1eb59003d6136602c683afd2a93191e8f4 100644
--- a/pkg/analysis_server/lib/src/plugin/result_merger.dart
+++ b/pkg/analysis_server/lib/src/plugin/result_merger.dart
@@ -4,9 +4,8 @@
import 'dart:collection';
-import 'package:analysis_server/protocol/protocol_generated.dart'
- hide AnalysisErrorFixes;
-import 'package:analyzer_plugin/protocol/protocol_common.dart' as plugin;
+import 'package:analysis_server/protocol/protocol_generated.dart';
+import 'package:analyzer_plugin/protocol/protocol_common.dart';
import 'package:analyzer_plugin/protocol/protocol_generated.dart' as plugin;
import 'package:meta/meta.dart';
@@ -32,7 +31,7 @@ class ResultMerger {
/**
* Return a key encoding the unique attributes of the given [error].
*/
- String computeKey(plugin.AnalysisError error) {
+ String computeKey(AnalysisError error) {
StringBuffer buffer = new StringBuffer();
buffer.write(error.location.offset);
buffer.write(';');
« no previous file with comments | « pkg/analysis_server/lib/src/plugin/result_converter.dart ('k') | pkg/analysis_server/lib/src/protocol/protocol_internal.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698