Chromium Code Reviews| 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 dfbac68d7704ad0a05d529ea870652a3cbbc54d9..ac74c02f0c488c563dab90e90252e11e040da509 100644 |
| --- a/pkg/analyzer/lib/src/generated/engine.dart |
| +++ b/pkg/analyzer/lib/src/generated/engine.dart |
| @@ -1352,6 +1352,9 @@ class AnalysisContextImpl implements InternalAnalysisContext { |
| List<AnalysisTarget> get priorityTargets => prioritySources; |
| @override |
| + CachePartition get privateAnalysisCachePartition => _privatePartition; |
| + |
| + @override |
| SourceFactory get sourceFactory => _sourceFactory; |
| @override |
| @@ -9059,6 +9062,14 @@ abstract class InternalAnalysisContext implements AnalysisContext { |
| List<AnalysisTarget> get priorityTargets; |
| /** |
| + * The partition that contains analysis results that are not shared with other |
| + * contexts. |
| + * |
| + * TODO(scheglov) add the type, once we have only one cache. |
| + */ |
| + dynamic get privateAnalysisCachePartition; |
|
Brian Wilkerson
2015/06/05 21:01:34
I'm not fond of the idea of exposing the cache str
|
| + |
| + /** |
| * A factory to override how [ResolverVisitor] is created. |
| */ |
| ResolverVisitorFactory get resolverVisitorFactory; |