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

Unified Diff: sdk/lib/_internal/compiler/implementation/dump_info.dart

Issue 330913004: Move Compiler.libraries to LibraryLoader. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix compiler_isolate.dart Created 6 years, 6 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: sdk/lib/_internal/compiler/implementation/dump_info.dart
diff --git a/sdk/lib/_internal/compiler/implementation/dump_info.dart b/sdk/lib/_internal/compiler/implementation/dump_info.dart
index 2d05e8fa579a25497956ba7698438fde7f4de2ed..6f8a8174fafa090b82de9233d500209e2a065520 100644
--- a/sdk/lib/_internal/compiler/implementation/dump_info.dart
+++ b/sdk/lib/_internal/compiler/implementation/dump_info.dart
@@ -337,7 +337,8 @@ class InfoDumpVisitor extends ElementVisitor<InfoNode> {
counter += 1;
}
- List<LibraryElement> sortedLibraries = compiler.libraries.values.toList();
+ List<LibraryElement> sortedLibraries =
+ compiler.libraryLoader.libraries.toList();
sortedLibraries.sort((LibraryElement l1, LibraryElement l2) {
if (l1.isPlatformLibrary && !l2.isPlatformLibrary) {
return 1;

Powered by Google App Engine
This is Rietveld 408576698