| 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 10c69c19643fd8ceef79cc2241f950ef6c125e05..cb6ccf42fd1604791458245f2087cc2ae03cedd4 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
|
| @@ -27,7 +27,7 @@ class PrefixedElementContributor extends DartCompletionContributor {
|
| @override
|
| bool computeFast(DartCompletionRequest request) {
|
| OpType optype = request.optype;
|
| - if (optype.includeInvocationSuggestions) {
|
| + if (optype.isPrefixed) {
|
| builder = request.target.containingNode
|
| .accept(new _InvocationAstVisitor(request));
|
| if (builder != null) {
|
|
|