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

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

Issue 1507303002: extract LibraryMemberContributor from prefixed element contributor (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/dart/completion_manager.dart
diff --git a/pkg/analysis_server/lib/src/services/completion/dart/completion_manager.dart b/pkg/analysis_server/lib/src/services/completion/dart/completion_manager.dart
index d895218c35aa4f873c043368af6ddf83fbb64121..c1949294a62a8d9315578dddeef60f2bf124cb0e 100644
--- a/pkg/analysis_server/lib/src/services/completion/dart/completion_manager.dart
+++ b/pkg/analysis_server/lib/src/services/completion/dart/completion_manager.dart
@@ -154,11 +154,7 @@ class DartCompletionRequestImpl extends CompletionRequestImpl
}
@override
- Future resolveIdentifier(SimpleIdentifier identifier) async {
- if (identifier.bestElement != null) {
- return;
- }
-
+ Future resolveExpression(Expression expression) async {
//TODO(danrubel) resolve the expression or containing method
// rather than the entire complilation unit

Powered by Google App Engine
This is Rietveld 408576698