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

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

Issue 23455028: Mirrors overhaul. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r29550. Created 7 years, 2 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 | « dart/runtime/lib/mirrors_patch.dart ('k') | dart/sdk/lib/_internal/dartdoc/lib/src/json_serializer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart b/dart/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
index 700d8a88de1f1dc3142187604c8f52ca51a87c35..7347573e22e7a69d4cd036641f13204968a57ab5 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
@@ -17,8 +17,8 @@ abstract class MirrorSystem {
* Returns an iterable of all libraries in the mirror system whose library
* name is [libraryName].
*/
- Iterable<LibraryMirror> findLibrary(String libraryName) {
- return libraries.values.where(
+ LibraryMirror findLibrary(String libraryName) {
+ return libraries.values.singleWhere(
(library) => library.simpleName == libraryName);
}
« no previous file with comments | « dart/runtime/lib/mirrors_patch.dart ('k') | dart/sdk/lib/_internal/dartdoc/lib/src/json_serializer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698