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

Unified Diff: pkg/analysis_server/lib/src/services/completion/dart/contribution_sorter.dart

Issue 1539693002: move DartCompletionSorter to dart specific contributor (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge Created 5 years 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/services/completion/dart/contribution_sorter.dart
diff --git a/pkg/analysis_server/lib/src/services/completion/dart/contribution_sorter.dart b/pkg/analysis_server/lib/src/services/completion/dart/contribution_sorter.dart
index 8279be35eb4c9c8c8392e70546b47f019ac0bd06..667b88300d8a2a159937f4e63478327ec1a84498 100644
--- a/pkg/analysis_server/lib/src/services/completion/dart/contribution_sorter.dart
+++ b/pkg/analysis_server/lib/src/services/completion/dart/contribution_sorter.dart
@@ -7,7 +7,7 @@ library services.completion.dart.sorter;
import 'dart:async';
import 'package:analysis_server/plugin/protocol/protocol.dart';
-import 'package:analysis_server/src/provisional/completion/completion_core.dart';
+import 'package:analysis_server/src/provisional/completion/dart/completion_dart.dart';
/**
* The abstract class [DartContributionSorter] defines the behavior of objects
@@ -21,6 +21,6 @@ abstract class DartContributionSorter {
* this method is called to adjust the relevance of those suggestions.
* Return a [Future] that completes when the suggestions have been updated.
*/
- Future sort(
- CompletionRequest request, Iterable<CompletionSuggestion> suggestions);
+ Future sort(DartCompletionRequest request,
+ Iterable<CompletionSuggestion> suggestions);
}

Powered by Google App Engine
This is Rietveld 408576698