| Index: pkg/analysis_server/lib/src/protocol.dart
|
| diff --git a/pkg/analysis_server/lib/src/protocol.dart b/pkg/analysis_server/lib/src/protocol.dart
|
| index 1f8619bf866663cc596b1c80333095f2fe8a35b0..175c166394f9a976b449493265f61ba48c3eb333 100644
|
| --- a/pkg/analysis_server/lib/src/protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/protocol.dart
|
| @@ -235,6 +235,9 @@ ElementKind _elementKindFromEngine(engine.ElementKind kind) {
|
| if (kind == engine.ElementKind.PARAMETER) {
|
| return ElementKind.PARAMETER;
|
| }
|
| + if (kind == engine.ElementKind.PREFIX) {
|
| + return ElementKind.PREFIX;
|
| + }
|
| if (kind == engine.ElementKind.SETTER) {
|
| return ElementKind.SETTER;
|
| }
|
|
|