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

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

Issue 27369003: Update mirror tests to new mixin application syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/mirrors/generic_mixin_test.dart ('k') | tests/lib/mirrors/mixin_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/mixin_application_test.dart
diff --git a/tests/lib/mirrors/mixin_application_test.dart b/tests/lib/mirrors/mixin_application_test.dart
index c552a1b23ac3ac18b3f57dbaa02e7fe4e4841845..953850c65aa791ea5b92068c92920d760fee1fa7 100644
--- a/tests/lib/mirrors/mixin_application_test.dart
+++ b/tests/lib/mirrors/mixin_application_test.dart
@@ -26,10 +26,10 @@ class Mixin2 {
m2() {}
}
-typedef MixinApplication = C with Mixin;
-typedef MixinApplicationA = C with Mixin, Mixin2;
+class MixinApplication = C with Mixin;
+class MixinApplicationA = C with Mixin, Mixin2;
-typedef UnusedMixinApplication = C with Mixin;
+class UnusedMixinApplication = C with Mixin;
class Subclass extends C with Mixin {
f() {}
« no previous file with comments | « tests/lib/mirrors/generic_mixin_test.dart ('k') | tests/lib/mirrors/mixin_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698