| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library analyzer.src.generated.engine; | 5 library analyzer.src.generated.engine; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection'; | 8 import 'dart:collection'; |
| 9 | 9 |
| 10 import 'package:analyzer/dart/ast/ast.dart'; | 10 import 'package:analyzer/dart/ast/ast.dart'; |
| (...skipping 1947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1958 */ | 1958 */ |
| 1959 AnalysisCache get analysisCache; | 1959 AnalysisCache get analysisCache; |
| 1960 | 1960 |
| 1961 /** | 1961 /** |
| 1962 * Allow the client to supply its own content cache. This will take the | 1962 * Allow the client to supply its own content cache. This will take the |
| 1963 * place of the content cache created by default, allowing clients to share | 1963 * place of the content cache created by default, allowing clients to share |
| 1964 * the content cache between contexts. | 1964 * the content cache between contexts. |
| 1965 */ | 1965 */ |
| 1966 set contentCache(ContentCache value); | 1966 set contentCache(ContentCache value); |
| 1967 | 1967 |
| 1968 /// Get the [EmbedderYamlLocator] for this context. | 1968 /** |
| 1969 * Get the [EmbedderYamlLocator] for this context. |
| 1970 */ |
| 1971 @deprecated |
| 1969 EmbedderYamlLocator get embedderYamlLocator; | 1972 EmbedderYamlLocator get embedderYamlLocator; |
| 1970 | 1973 |
| 1971 /** | 1974 /** |
| 1972 * Return a list of the explicit targets being analyzed by this context. | 1975 * Return a list of the explicit targets being analyzed by this context. |
| 1973 */ | 1976 */ |
| 1974 List<AnalysisTarget> get explicitTargets; | 1977 List<AnalysisTarget> get explicitTargets; |
| 1975 | 1978 |
| 1976 /** | 1979 /** |
| 1977 * Return the [StreamController] reporting [InvalidatedResult]s for everything | 1980 * Return the [StreamController] reporting [InvalidatedResult]s for everything |
| 1978 * in this context's cache. | 1981 * in this context's cache. |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2584 * The data that was created from the source. | 2587 * The data that was created from the source. |
| 2585 */ | 2588 */ |
| 2586 final E data; | 2589 final E data; |
| 2587 | 2590 |
| 2588 /** | 2591 /** |
| 2589 * Initialize a newly created holder to associate the given [data] with the | 2592 * Initialize a newly created holder to associate the given [data] with the |
| 2590 * given [modificationTime]. | 2593 * given [modificationTime]. |
| 2591 */ | 2594 */ |
| 2592 TimestampedData(this.modificationTime, this.data); | 2595 TimestampedData(this.modificationTime, this.data); |
| 2593 } | 2596 } |
| OLD | NEW |