| 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 17e2f54105991b37c33f66f3595ea026c6437c9c..385849f25e4feeb662990eb495895c78caecffd5 100644
|
| --- a/pkg/analyzer/lib/dart/element/element.dart
|
| +++ b/pkg/analyzer/lib/dart/element/element.dart
|
| @@ -37,8 +37,8 @@
|
| library analyzer.dart.element.element;
|
|
|
| import 'package:analyzer/dart/ast/ast.dart';
|
| +import 'package:analyzer/dart/constant/value.dart';
|
| import 'package:analyzer/dart/element/type.dart';
|
| -import 'package:analyzer/src/generated/constant.dart' show DartObject;
|
| import 'package:analyzer/src/generated/engine.dart' show AnalysisContext;
|
| import 'package:analyzer/src/generated/java_core.dart';
|
| import 'package:analyzer/src/generated/java_engine.dart';
|
| @@ -808,18 +808,18 @@ abstract class ElementAnnotation implements ConstantEvaluationTarget {
|
| bool get isDeprecated;
|
|
|
| /**
|
| - * Return `true` if this annotation marks the associated method as being
|
| - * expected to override an inherited method.
|
| - */
|
| - bool get isOverride;
|
| -
|
| - /**
|
| * Return `true` if this annotation marks the associated member as requiring
|
| * overriding methods to call super.
|
| */
|
| bool get isMustCallSuper;
|
|
|
| /**
|
| + * Return `true` if this annotation marks the associated method as being
|
| + * expected to override an inherited method.
|
| + */
|
| + bool get isOverride;
|
| +
|
| + /**
|
| * Return `true` if this annotation marks the associated member as being
|
| * protected.
|
| */
|
| @@ -1330,12 +1330,6 @@ abstract class LibraryElement implements Element {
|
| static const List<LibraryElement> EMPTY_LIST = const <LibraryElement>[];
|
|
|
| /**
|
| - * Return a list containing the strongly connected component in the
|
| - * import/export graph in which the current library resides.
|
| - */
|
| - List<LibraryElement> get libraryCycle;
|
| -
|
| - /**
|
| * Return the compilation unit that defines this library.
|
| */
|
| CompilationUnitElement get definingCompilationUnit;
|
| @@ -1417,6 +1411,12 @@ abstract class LibraryElement implements Element {
|
| bool get isInSdk;
|
|
|
| /**
|
| + * Return a list containing the strongly connected component in the
|
| + * import/export graph in which the current library resides.
|
| + */
|
| + List<LibraryElement> get libraryCycle;
|
| +
|
| + /**
|
| * Return the element representing the synthetic function `loadLibrary` that
|
| * is implicitly defined for this library if the library is imported using a
|
| * deferred import.
|
|
|