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

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

Issue 791553007: suggest fields rather than synthetic getters (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 5 years, 11 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/imported_computer_test.dart
diff --git a/pkg/analysis_server/test/services/completion/imported_computer_test.dart b/pkg/analysis_server/test/services/completion/imported_computer_test.dart
index c51311f84a470788e90e02042c4298d9dd4d663c..f5a6bd3ea551a3fd3d832618e9d988ca4af4464f 100644
--- a/pkg/analysis_server/test/services/completion/imported_computer_test.dart
+++ b/pkg/analysis_server/test/services/completion/imported_computer_test.dart
@@ -27,6 +27,12 @@ main() {
@ReflectiveTestCase()
class ImportedComputerTest extends AbstractSelectorSuggestionTest {
+ @override
+ CompletionSuggestion assertSuggestImportedField(String name, String type, [int relevance =
+ COMPLETION_RELEVANCE_DEFAULT]) {
+ return assertSuggestField(name, type, relevance: relevance);
+ }
+
void assertCached(String completion) {
DartCompletionCache cache = request.cache;
if (!isCached(cache.importedTypeSuggestions, completion) &&

Powered by Google App Engine
This is Rietveld 408576698