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

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

Issue 1038113002: remove invalid completions in method declaration param list (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 5 years, 9 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/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 07aeca61b43d7592cdc513f880a93327354be217..6ee3af86eeba04649c869168336247d559327f44 100644
--- a/pkg/analysis_server/test/services/completion/completion_test_util.dart
+++ b/pkg/analysis_server/test/services/completion/completion_test_util.dart
@@ -2060,11 +2060,11 @@ abstract class AbstractSelectorSuggestionTest extends AbstractCompletionTest {
return computeFull((bool result) {
expect(request.replacementOffset, completionOffset);
expect(request.replacementLength, 0);
- assertSuggestLocalFunction('foo', null);
- assertSuggestLocalMethod('a', 'A', null);
+ assertNotSuggested('foo');
+ assertNotSuggested('a');
assertSuggestLocalClass('A');
assertSuggestImportedClass('String');
- assertSuggestImportedFunction('identical', 'bool');
+ assertNotSuggested('identical');
assertNotSuggested('bar');
});
}

Powered by Google App Engine
This is Rietveld 408576698