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

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

Issue 88473002: Support reflection on generics with dynamic types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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/lib/mirrors/generics_dynamic_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/generics_test.dart
diff --git a/tests/lib/mirrors/generics_test.dart b/tests/lib/mirrors/generics_test.dart
index 085dc37d233e8238423d5c5c86b9082fd351bcf7..ef6d3b06ef3218c2826c1c6832f6348eeec7d059 100644
--- a/tests/lib/mirrors/generics_test.dart
+++ b/tests/lib/mirrors/generics_test.dart
@@ -79,7 +79,7 @@ main() {
var numMirror = reflectClass(num);
var dynamicMirror = currentMirrorSystem().dynamicType;
typeArguments(reflect(new A<num>()).type, [numMirror]);
- typeArguments(reflect(new A<dynamic>()).type, [dynamicMirror]); /// 01: ok
+ typeArguments(reflect(new A<dynamic>()).type, [dynamicMirror]);
typeArguments(reflect(new A()).type, [dynamicMirror]); /// 01: ok
typeArguments(reflect(new B()).type, []);
typeArguments(reflect(new C()).type, []);
« no previous file with comments | « tests/lib/mirrors/generics_dynamic_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698