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

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

Issue 1505703003: extract StaticMemberContributor from PrefixedElementContributor (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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/prefixed_element_contributor.dart
diff --git a/pkg/analysis_server/lib/src/services/completion/prefixed_element_contributor.dart b/pkg/analysis_server/lib/src/services/completion/prefixed_element_contributor.dart
index 23657fdedef0bd07638c2ad415ac5ea000b0781c..da6c15d6dbc7336e2d29168739aa953eb9fb3fb9 100644
--- a/pkg/analysis_server/lib/src/services/completion/prefixed_element_contributor.dart
+++ b/pkg/analysis_server/lib/src/services/completion/prefixed_element_contributor.dart
@@ -301,8 +301,9 @@ class _PrefixedIdentifierSuggestionBuilder
if (element != null) {
InterfaceType type = element.type;
if (type != null) {
- StaticClassElementSuggestionBuilder.suggestionsFor(
- request, type.element);
+ // Suggested by StaticMemberContributor
+ // StaticClassElementSuggestionBuilder.suggestionsFor(
+ // request, type.element);
}
}
return new Future.value(false);

Powered by Google App Engine
This is Rietveld 408576698