| Index: pkg/analyzer/lib/src/generated/element.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/element.dart b/pkg/analyzer/lib/src/generated/element.dart
|
| index 337dc998aeaea9ca9b8bf4d5d679755e77e1f778..379d3a1f61f01a6cd210d42af863cdf9de6bb85f 100644
|
| --- a/pkg/analyzer/lib/src/generated/element.dart
|
| +++ b/pkg/analyzer/lib/src/generated/element.dart
|
| @@ -9,6 +9,8 @@ library engine.element;
|
|
|
| import 'dart:collection';
|
|
|
| +import 'package:sharedfrontend/elements.dart' as shared;
|
| +
|
| import 'ast.dart';
|
| import 'constant.dart' show EvaluationResultImpl;
|
| import 'engine.dart' show AnalysisContext, AnalysisEngine, AnalysisException;
|
| @@ -108,7 +110,7 @@ class BottomTypeImpl extends TypeImpl {
|
| /**
|
| * The interface `ClassElement` defines the behavior of elements that represent a class.
|
| */
|
| -abstract class ClassElement implements Element {
|
| +abstract class ClassElement implements Element, shared.ClassElement {
|
| /**
|
| * Return an array containing all of the accessors (getters and setters) declared in this class.
|
| *
|
| @@ -2228,7 +2230,7 @@ class DynamicTypeImpl extends TypeImpl {
|
| * unnamed functions and exist in order to more accurately represent the semantic structure of the
|
| * program.
|
| */
|
| -abstract class Element {
|
| +abstract class Element extends shared.Element {
|
| /**
|
| * An Unicode right arrow.
|
| */
|
| @@ -7104,7 +7106,7 @@ class LabelElementImpl extends ElementImpl implements LabelElement {
|
| /**
|
| * The interface `LibraryElement` defines the behavior of elements representing a library.
|
| */
|
| -abstract class LibraryElement implements Element {
|
| +abstract class LibraryElement implements Element, shared.LibraryElement {
|
| /**
|
| * Return the compilation unit that defines this library.
|
| *
|
|
|