| 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 f7dbe75406e424889f0c82e910fe07f98a27997a..192485a63f79c71da3f1e1072066e774d63613db 100644
|
| --- a/pkg/analyzer/lib/dart/element/element.dart
|
| +++ b/pkg/analyzer/lib/dart/element/element.dart
|
| @@ -453,6 +453,11 @@ abstract class CompilationUnitElement implements Element, UriReferencedElement {
|
| bool get hasLoadLibraryFunction;
|
|
|
| /**
|
| + * Return the [LineInfo] for the [source], or `null` if not computed yet.
|
| + */
|
| + LineInfo get lineInfo;
|
| +
|
| + /**
|
| * Return a list containing all of the top-level variables contained in this
|
| * compilation unit.
|
| */
|
| @@ -719,7 +724,7 @@ abstract class Element implements AnalysisTarget, ResolutionTarget {
|
| * Use the given [visitor] to visit this element. Return the value returned by
|
| * the visitor as a result of visiting this element.
|
| */
|
| - /*=T*/ accept/*<T>*/(ElementVisitor<dynamic/*=T*/> visitor);
|
| + /*=T*/ accept/*<T>*/(ElementVisitor<dynamic/*=T*/ > visitor);
|
|
|
| /**
|
| * Return the documentation comment for this element as it appears in the
|
|
|