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

Unified Diff: tests/lib/mirrors/mirrors_reader.dart

Issue 646103005: Fix Function::Clone() and Field::Clone() to adjust the class owner of type (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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 | « tests/language/mixin_type_parameter6_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/mirrors_reader.dart
===================================================================
--- tests/lib/mirrors/mirrors_reader.dart (revision 41423)
+++ tests/lib/mirrors/mirrors_reader.dart (working copy)
@@ -213,7 +213,7 @@
visit(mirror, 'isStatic', () => mirror.isStatic);
visit(mirror, 'isSynthetic', () => mirror.isSynthetic);
visit(mirror, 'parameters', () => mirror.parameters);
- visit(mirror, 'returnType', () => mirror.returnType);
+ // visit(mirror, 'returnType', () => mirror.returnType); // Issue 21474.
visit(mirror, 'source', () => mirror.source);
}
@@ -226,7 +226,7 @@
}
visit(mirror, 'isNamed', () => mirror.isNamed);
visit(mirror, 'isOptional', () => mirror.isOptional);
- visit(mirror, 'type', () => mirror.type);
+ // visit(mirror, 'type', () => mirror.type); // Issue 21474.
}
visitSourceLocation(SourceLocation location) {
@@ -258,6 +258,6 @@
visit(mirror, 'isConst', () => mirror.isConst);
visit(mirror, 'isFinal', () => mirror.isFinal);
visit(mirror, 'isStatic', () => mirror.isStatic);
- visit(mirror, 'type', () => mirror.type);
+ // visit(mirror, 'type', () => mirror.type); // Issue 21474.
}
}
« no previous file with comments | « tests/language/mixin_type_parameter6_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698