| Index: pkg/analyzer/lib/dart/element/element.dart
|
| diff --git a/pkg/analyzer/lib/dart/element/element.dart b/pkg/analyzer/lib/dart/element/element.dart
|
| index a69b29b57e53ae627b99e0c99739361ada847f81..ddc60a5ea02866c9b82f46f53238693ff93eae1a 100644
|
| --- a/pkg/analyzer/lib/dart/element/element.dart
|
| +++ b/pkg/analyzer/lib/dart/element/element.dart
|
| @@ -903,7 +903,8 @@ class ElementKind implements Comparable<ElementKind> {
|
| static const ElementKind FUNCTION =
|
| const ElementKind('FUNCTION', 7, "function");
|
|
|
| - static const ElementKind GENERIC_FUNCTION_TYPE = const ElementKind('GENERIC_FUNCTION_TYPE', 8, 'generic function type');
|
| + static const ElementKind GENERIC_FUNCTION_TYPE =
|
| + const ElementKind('GENERIC_FUNCTION_TYPE', 8, 'generic function type');
|
|
|
| static const ElementKind GETTER = const ElementKind('GETTER', 9, "getter");
|
|
|
| @@ -1278,9 +1279,7 @@ abstract class FunctionElement implements ExecutableElement, LocalElement {
|
| /**
|
| * The pseudo-declaration that defines a generic function type.
|
| */
|
| -abstract class GenericFunctionTypeElement implements FunctionTypedElement {
|
| -
|
| -}
|
| +abstract class GenericFunctionTypeElement implements FunctionTypedElement {}
|
|
|
| /**
|
| * A function type alias (`typedef`).
|
|
|