Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: pkg/analysis_server/lib/src/domain_analysis.dart

Issue 1223413003: Hook for overriding the ContextManager and some code clean-up (with more to follow) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/domain_analysis.dart
diff --git a/pkg/analysis_server/lib/src/domain_analysis.dart b/pkg/analysis_server/lib/src/domain_analysis.dart
index fd326462dfac71230d3b8fbbba2f758024c14e35..0282fdaea6dd526206502cb61e0021e889ee722e 100644
--- a/pkg/analysis_server/lib/src/domain_analysis.dart
+++ b/pkg/analysis_server/lib/src/domain_analysis.dart
@@ -142,7 +142,7 @@ class AnalysisDomainHandler implements RequestHandler {
new AnalysisReanalyzeParams.fromRequest(request);
List<String> roots = params.roots;
if (roots == null || roots.isNotEmpty) {
- List<String> includedPaths = server.contextDirectoryManager.includedPaths;
+ List<String> includedPaths = server.contextManager.includedPaths;
List<Resource> rootResources = null;
if (roots != null) {
rootResources = <Resource>[];

Powered by Google App Engine
This is Rietveld 408576698