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

Unified Diff: pkg/analysis_services/test/completion/completion_computer_test.dart

Issue 465843002: respect show/hide combinators when generating suggestions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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_services/test/completion/completion_computer_test.dart
diff --git a/pkg/analysis_services/test/completion/completion_computer_test.dart b/pkg/analysis_services/test/completion/completion_computer_test.dart
index 71678ee92c47ce81f19abd186d3f6dedd1f8fd05..961d00c4d1802f919f89636fc7ad11f25c91e016 100644
--- a/pkg/analysis_services/test/completion/completion_computer_test.dart
+++ b/pkg/analysis_services/test/completion/completion_computer_test.dart
@@ -200,7 +200,7 @@ class MockCompletionComputer extends CompletionComputer {
}
@override
- bool computeFast(CompilationUnit unit,
+ bool computeFast(CompilationUnit unit, AstNode node,
List<CompletionSuggestion> suggestions) {
fastCount++;
if (fastSuggestion != null) {
@@ -210,7 +210,7 @@ class MockCompletionComputer extends CompletionComputer {
}
@override
- Future<bool> computeFull(CompilationUnit unit,
+ Future<bool> computeFull(CompilationUnit unit, AstNode node,
List<CompletionSuggestion> suggestions) {
fullCount++;
if (fullSuggestion != null) {

Powered by Google App Engine
This is Rietveld 408576698