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

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

Issue 39783003: Substitute types in instances of generic classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added regression test and updated dart2js_extra.status. 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 | « tests/lib/lib.status ('k') | tests/lib/mirrors/generic_type_mirror_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/class_mirror_type_variables_test.dart
diff --git a/tests/lib/mirrors/class_mirror_type_variables_test.dart b/tests/lib/mirrors/class_mirror_type_variables_test.dart
index 9694ee4f10dbb77d8104a931297a7aa85ee3c9ac..51da82ec6618fa024d118660a0182c4322f57baf 100644
--- a/tests/lib/mirrors/class_mirror_type_variables_test.dart
+++ b/tests/lib/mirrors/class_mirror_type_variables_test.dart
@@ -66,16 +66,16 @@ void testBAndC() {
Expect.equals(b, bZ.owner);
Expect.equals(c, cZ.owner);
- Expect.equals(b, bZBoundTypeVariable.owner); /// 01: ok
- Expect.equals(b, cZBoundTypeVariable.owner); /// 01: ok
+ Expect.equals(b, bZBoundTypeVariable.owner);
+ Expect.equals(b, cZBoundTypeVariable.owner);
Expect.equals(b, bZBoundTypeArgument.owner);
Expect.equals(c, cZBoundTypeArgument.owner);
Expect.notEquals(bZ, cZ);
Expect.equals(bZ, bZBoundTypeArgument);
Expect.equals(cZ, cZBoundTypeArgument);
- Expect.equals(bZ, bZBoundTypeVariable); /// 01: ok
- Expect.equals(bZ, cZBoundTypeVariable); /// 01: ok
+ Expect.equals(bZ, bZBoundTypeVariable);
+ Expect.equals(bZ, cZBoundTypeVariable);
}
testD() {
« no previous file with comments | « tests/lib/lib.status ('k') | tests/lib/mirrors/generic_type_mirror_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698