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

Unified Diff: dart/pkg/serialization/lib/src/serialization_rule.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
Index: dart/pkg/serialization/lib/src/serialization_rule.dart
diff --git a/dart/pkg/serialization/lib/src/serialization_rule.dart b/dart/pkg/serialization/lib/src/serialization_rule.dart
index 97af0e8bb359c25412ce9f054b33842d5a13050d..49e42ae7885db2724f4bb509a7f85c5a81af7a65 100644
--- a/dart/pkg/serialization/lib/src/serialization_rule.dart
+++ b/dart/pkg/serialization/lib/src/serialization_rule.dart
@@ -414,8 +414,8 @@ class MirrorRule extends NamedObjectRule {
} else {
var symbol = new Symbol(name);
var typeSymbol = new Symbol(type);
- var libMirror = currentMirrorSystem().findLibrary(symbol).firstWhere(
- (lib) => lib.classes[typeSymbol] != null);
+ var libMirror = currentMirrorSystem().libraries.values.firstWhere(
+ (lib) => lib.simpleName == symbol && lib.classes[typeSymbol] != null);
return libMirror.classes[typeSymbol];
}
}
« no previous file with comments | « dart/pkg/serialization/lib/src/mirrors_helpers.dart ('k') | dart/pkg/serialization/test/serialization_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698