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

Unified Diff: pkg/analyzer_cli/lib/src/analyzer_impl.dart

Issue 2696083002: Reapply "Switch to the new analysis driver in analyzer_cli." (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | pkg/analyzer_cli/lib/src/driver.dart » ('j') | sdk/bin/dartanalyzer » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_cli/lib/src/analyzer_impl.dart
diff --git a/pkg/analyzer_cli/lib/src/analyzer_impl.dart b/pkg/analyzer_cli/lib/src/analyzer_impl.dart
index 5df078a224d8cf0899f0adb8f88cb04a38eea996..73ff30b2d4a2124085ca2224ae23ddf5a55d0f8d 100644
--- a/pkg/analyzer_cli/lib/src/analyzer_impl.dart
+++ b/pkg/analyzer_cli/lib/src/analyzer_impl.dart
@@ -266,8 +266,9 @@ class AnalyzerImpl {
if (analysisDriver != null) {
String path = librarySource.fullName;
analysisDriver.priorityFiles = [path];
- AnalysisResult analysisResult = await analysisDriver.getResult(path);
- return analysisResult.unit.element.library;
+ UnitElementResult elementResult =
+ await analysisDriver.getUnitElement(path);
+ return elementResult.element.library;
} else {
return context.computeLibraryElement(librarySource);
}
« no previous file with comments | « no previous file | pkg/analyzer_cli/lib/src/driver.dart » ('j') | sdk/bin/dartanalyzer » ('J')

Powered by Google App Engine
This is Rietveld 408576698