| Index: pkg/analysis_server/lib/src/services/completion/keyword_computer.dart
|
| diff --git a/pkg/analysis_server/lib/src/services/completion/keyword_computer.dart b/pkg/analysis_server/lib/src/services/completion/keyword_computer.dart
|
| index f688f2fa0100ec573e5bcbd7e328ea2e8abf86e3..24415bd5a58187abe407929d9f75958e8c0370e3 100644
|
| --- a/pkg/analysis_server/lib/src/services/completion/keyword_computer.dart
|
| +++ b/pkg/analysis_server/lib/src/services/completion/keyword_computer.dart
|
| @@ -70,7 +70,7 @@ class _KeywordVisitor extends GeneralizingAstVisitor {
|
| if (entity == node.name) {
|
| return;
|
| }
|
| - if (entity == node.rightBracket) {
|
| + if (entity == node.rightBracket || entity is ClassMember) {
|
| _addSuggestions([
|
| Keyword.CONST,
|
| Keyword.DYNAMIC,
|
|
|