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 aab29dd5186507b7c17bce4fa8eb8b35d55d2300..728daac4c93074310bc7dc0d57e8a7ff5f8d3a54 100644 |
| --- a/pkg/analyzer/lib/src/generated/engine.dart |
| +++ b/pkg/analyzer/lib/src/generated/engine.dart |
| @@ -1842,10 +1842,8 @@ abstract class InternalAnalysisContext implements AnalysisContext { |
| /** |
| * A table mapping the sources known to the context to the information known |
| * about the source. |
| - * |
| - * TODO(scheglov) add the type, once we have only one cache. |
| */ |
| - dynamic get analysisCache; |
| + AnalysisCache get analysisCache; |
| /** |
| * Allow the client to supply its own content cache. This will take the |
| @@ -1879,7 +1877,7 @@ abstract class InternalAnalysisContext implements AnalysisContext { |
| * |
| * TODO(scheglov) add the type, once we have only one cache. |
|
scheglov
2015/12/07 19:59:11
Remove TODO.
Brian Wilkerson
2015/12/07 20:02:26
Done
|
| */ |
| - dynamic get privateAnalysisCachePartition; |
| + CachePartition get privateAnalysisCachePartition; |
| /** |
| * Sets the [TypeProvider] for this context. |