| Index: pkg/analyzer/lib/src/context/context.dart
|
| diff --git a/pkg/analyzer/lib/src/context/context.dart b/pkg/analyzer/lib/src/context/context.dart
|
| index bb0cd6a7da3b1e0e413ed946cdfc40fb6804b6af..bcf544c1fd03e5ff5a7739caf79e1d4bbc2aaaff 100644
|
| --- a/pkg/analyzer/lib/src/context/context.dart
|
| +++ b/pkg/analyzer/lib/src/context/context.dart
|
| @@ -190,6 +190,9 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| }
|
|
|
| @override
|
| + cache.AnalysisCache get analysisCache => _cache;
|
| +
|
| + @override
|
| AnalysisOptions get analysisOptions => _options;
|
|
|
| @override
|
| @@ -566,8 +569,10 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| }
|
|
|
| @override
|
| - LibraryElement computeLibraryElement(Source source) => _computeResult(
|
| - source, LIBRARY_ELEMENT); //_computeResult(source, HtmlEntry.ELEMENT);
|
| + LibraryElement computeLibraryElement(Source source) {
|
| + //_computeResult(source, HtmlEntry.ELEMENT);
|
| + return _computeResult(source, LIBRARY_ELEMENT);
|
| + }
|
|
|
| @override
|
| LineInfo computeLineInfo(Source source) => _computeResult(source, LINE_INFO);
|
|
|