| 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 fbb33a17f190c99febba036ef1e83eaac69ae818..fc2d35a2beda9e48f77d638da68c1dd996e8d356 100644
|
| --- a/pkg/analysis_server/lib/src/protocol.dart
|
| +++ b/pkg/analysis_server/lib/src/protocol.dart
|
| @@ -219,6 +219,9 @@ ElementKind _elementKindFromEngine(engine.ElementKind kind) {
|
| if (kind == engine.ElementKind.GETTER) {
|
| return ElementKind.GETTER;
|
| }
|
| + if (kind == engine.ElementKind.LABEL) {
|
| + return ElementKind.LABEL;
|
| + }
|
| if (kind == engine.ElementKind.LIBRARY) {
|
| return ElementKind.LIBRARY;
|
| }
|
|
|