| 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 ebfbcaccd6261931db4111dd1420a92b8d791271..0d89297e59e70bcdc60953ea8768ce08f256b3ca 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;
|
| @@ -111,7 +113,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.
|
| *
|
| @@ -2234,7 +2236,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.
|
| */
|
| @@ -7127,7 +7129,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.
|
| *
|
|
|