| Index: pkg/analyzer/lib/error/error.dart
|
| diff --git a/pkg/analyzer/lib/error/error.dart b/pkg/analyzer/lib/error/error.dart
|
| index 8a4f9e8e21cedaee417f8fe1261684e40950cdc1..ed18004fac3d225ea119ea38ade20d66c3f0ac33 100644
|
| --- a/pkg/analyzer/lib/error/error.dart
|
| +++ b/pkg/analyzer/lib/error/error.dart
|
| @@ -872,17 +872,9 @@ class ErrorProperty<V> implements Comparable<ErrorProperty> {
|
| static const ErrorProperty<String> PARTS_LIBRARY_NAME =
|
| const ErrorProperty<String>('PARTS_LIBRARY_NAME', 1);
|
|
|
| - /**
|
| - * A property whose value is a list of [ExecutableElement] that should
|
| - * be but are not implemented by a concrete class.
|
| - */
|
| - static const ErrorProperty<List<ExecutableElement>> UNIMPLEMENTED_METHODS =
|
| - const ErrorProperty<List<ExecutableElement>>('UNIMPLEMENTED_METHODS', 2);
|
| -
|
| static const List<ErrorProperty> values = const [
|
| NOT_INITIALIZED_FIELDS,
|
| PARTS_LIBRARY_NAME,
|
| - UNIMPLEMENTED_METHODS
|
| ];
|
|
|
| /**
|
|
|