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

Unified Diff: pkg/analysis_server/lib/src/services/correction/fix_internal.dart

Issue 2653683004: Stop using SDK summary bundle. Analyze dart:xxx as any other libraries. (Closed)
Patch Set: Restore optional SDK bundle. Created 3 years, 11 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/services/correction/fix_internal.dart
diff --git a/pkg/analysis_server/lib/src/services/correction/fix_internal.dart b/pkg/analysis_server/lib/src/services/correction/fix_internal.dart
index 2a904262bbb59be539e4a8788e0ba71e52959435..dc59c71f0942701a26a4b8c2aa8a029b73cfb217 100644
--- a/pkg/analysis_server/lib/src/services/correction/fix_internal.dart
+++ b/pkg/analysis_server/lib/src/services/correction/fix_internal.dart
@@ -1523,7 +1523,7 @@ class FixProcessor {
}
// prepare LibraryElement
LibraryElement libraryElement =
- context.computeResult(librarySource, LIBRARY_ELEMENT1);
+ context.getResult(librarySource, LIBRARY_ELEMENT1);
if (libraryElement == null) {
continue;
}

Powered by Google App Engine
This is Rietveld 408576698