Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(761)

Unified Diff: pkg/analyzer/lib/dart/element/element.dart

Issue 1809013003: Move DartObject into the public API (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/dart/constant/value.dart ('k') | pkg/analyzer/lib/src/dart/element/element.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « pkg/analyzer/lib/dart/constant/value.dart ('k') | pkg/analyzer/lib/src/dart/element/element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698