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

Unified Diff: dart/pkg/serialization/lib/src/basic_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/basic_rule.dart
diff --git a/dart/pkg/serialization/lib/src/basic_rule.dart b/dart/pkg/serialization/lib/src/basic_rule.dart
index 157410c1eb2fa8fed0d6662540a9992907ee264d..7c6b8843f5882664829fb38755f69974831bdddd 100644
--- a/dart/pkg/serialization/lib/src/basic_rule.dart
+++ b/dart/pkg/serialization/lib/src/basic_rule.dart
@@ -574,7 +574,7 @@ class _FieldList extends IterableBase<_Field> {
var fields = publicFields(mirror);
var getters = publicGetters(mirror);
var gettersWithSetters = getters.where( (each)
- => mirror.setters[
+ => mirror.declarations[
new Symbol("${MirrorSystem.getName(each.simpleName)}=")] != null);
var gettersThatMatchConstructor = getters.where((each)
=> (named(each.simpleName) != null) &&
@@ -630,15 +630,7 @@ class Constructor {
// TODO(alanknight): Handle named parameters
Iterable inflated = fieldNumbers.map(
(x) => (x is int) ? r.inflateReference(state[x]) : x);
- var result;
- try {
- result = type.newInstance(nameSymbol, inflated.toList());
- } on MirroredError catch (e) {
- // Mirrored "compile-time" errors do not get treated as exceptions
- // in the debugger, so explicitly re-throw. Issue dartbug.com/10054.
- throw e;
- }
- return result;
+ return type.newInstance(nameSymbol, inflated.toList());
}
}
« no previous file with comments | « dart/pkg/polymer_expressions/lib/src/mirrors.dart ('k') | dart/pkg/serialization/lib/src/mirrors_helpers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698