| Index: pkg/analyzer/lib/src/generated/engine.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
|
| index 597d3819955bd14e5fb190d9804c795455079bfc..9be1f2d74a84f381e3e4dd6fe0982854fd0ea449 100644
|
| --- a/pkg/analyzer/lib/src/generated/engine.dart
|
| +++ b/pkg/analyzer/lib/src/generated/engine.dart
|
| @@ -1160,9 +1160,6 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| AnalysisOptions get analysisOptions => _options;
|
|
|
| @override
|
| - EmbedderYamlLocator get embedderYamlLocator => _embedderYamlLocator;
|
| -
|
| - @override
|
| void set analysisOptions(AnalysisOptions options) {
|
| bool needsRecompute = this._options.analyzeFunctionBodiesPredicate !=
|
| options.analyzeFunctionBodiesPredicate ||
|
| @@ -1258,6 +1255,9 @@ class AnalysisContextImpl implements InternalAnalysisContext {
|
| DeclaredVariables get declaredVariables => _declaredVariables;
|
|
|
| @override
|
| + EmbedderYamlLocator get embedderYamlLocator => _embedderYamlLocator;
|
| +
|
| + @override
|
| List<AnalysisTarget> get explicitTargets {
|
| List<AnalysisTarget> targets = <AnalysisTarget>[];
|
| MapIterator<Source, SourceEntry> iterator = _cache.iterator();
|
| @@ -9420,6 +9420,9 @@ abstract class InternalAnalysisContext implements AnalysisContext {
|
| */
|
| set contentCache(ContentCache value);
|
|
|
| + /// Get the [EmbedderYamlLocator] for this context.
|
| + EmbedderYamlLocator get embedderYamlLocator;
|
| +
|
| /**
|
| * Return a list of the explicit targets being analyzed by this context.
|
| */
|
| @@ -9449,9 +9452,6 @@ abstract class InternalAnalysisContext implements AnalysisContext {
|
| */
|
| dynamic get privateAnalysisCachePartition;
|
|
|
| - /// Get the [EmbedderYamlLocator] for this context.
|
| - EmbedderYamlLocator get embedderYamlLocator;
|
| -
|
| /**
|
| * A factory to override how [ResolverVisitor] is created.
|
| */
|
|
|