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

Unified Diff: tests/compiler/dart2js/analyze_unused_dart2js_test.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: tests/compiler/dart2js/analyze_unused_dart2js_test.dart
diff --git a/tests/compiler/dart2js/analyze_unused_dart2js_test.dart b/tests/compiler/dart2js/analyze_unused_dart2js_test.dart
index 4e0472626cff2c1ea22ddf0f19cab52805bbca80..03930aaa949107fbb365311af067f7292ad018ae 100644
--- a/tests/compiler/dart2js/analyze_unused_dart2js_test.dart
+++ b/tests/compiler/dart2js/analyze_unused_dart2js_test.dart
@@ -56,6 +56,6 @@ bool checkResults(Compiler compiler, CollectingDiagnosticHandler handler) {
}
}
}
- compiler.libraries['$helperUri'].forEachLocalMember(checkLive);
+ compiler.libraryLoader.lookupLibrary(helperUri).forEachLocalMember(checkLive);
return handler.checkResults();
}

Powered by Google App Engine
This is Rietveld 408576698