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

Unified Diff: pkg/analysis_server/test/services/completion/completion_test_util.dart

Issue 1471173003: hook new DartCompletionContributor API into existing framework (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge Created 5 years, 1 month 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/test/services/completion/completion_test_util.dart
diff --git a/pkg/analysis_server/test/services/completion/completion_test_util.dart b/pkg/analysis_server/test/services/completion/completion_test_util.dart
index 0736615b5b94ed383fb3c2071de2b427a64403e0..68d19587c0c9bd24277a33278ee69d80fce019a7 100644
--- a/pkg/analysis_server/test/services/completion/completion_test_util.dart
+++ b/pkg/analysis_server/test/services/completion/completion_test_util.dart
@@ -441,7 +441,7 @@ abstract class AbstractCompletionTest extends AbstractContextTest {
bool computeFast() {
expect(computeFastResult, isNull);
_completionManager = new DartCompletionManager(context, searchEngine,
- testSource, cache, [contributor], new CommonUsageSorter({}));
+ testSource, cache, [contributor], [], new CommonUsageSorter({}));
var result =
_completionManager.computeFast(request, new CompletionPerformance());
expect(request.replacementOffset, isNotNull);

Powered by Google App Engine
This is Rietveld 408576698