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

Unified Diff: tests/lib/mirrors/generic_mixin_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/lib.status ('k') | tests/lib/mirrors/mixin_application_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/generic_mixin_test.dart
diff --git a/tests/lib/mirrors/generic_mixin_test.dart b/tests/lib/mirrors/generic_mixin_test.dart
index b28beea1623c69f8c92ee86f6fc5dfd501b648df..ac9fbd38e432852371ed1163c00d1d263d99982c 100644
--- a/tests/lib/mirrors/generic_mixin_test.dart
+++ b/tests/lib/mirrors/generic_mixin_test.dart
@@ -14,11 +14,11 @@ class Super<S> {}
class Mixin<M> {}
class Nixim<N> {}
-typedef NonGenericMixinApplication1 = Super with Mixin;
-typedef NonGenericMixinApplication2 = Super<num> with Mixin<String>;
+class NonGenericMixinApplication1 = Super with Mixin;
+class NonGenericMixinApplication2 = Super<num> with Mixin<String>;
-typedef GenericMixinApplication1<MA> = Super<MA> with Mixin<MA>;
-typedef GenericMixinApplication2<MA> = Super<num> with Mixin<String>;
+class GenericMixinApplication1<MA> = Super<MA> with Mixin<MA>;
+class GenericMixinApplication2<MA> = Super<num> with Mixin<String>;
class NonGenericClass1 extends Super with Mixin {}
class NonGenericClass2 extends Super<num> with Mixin<String> {}
« no previous file with comments | « tests/lib/lib.status ('k') | tests/lib/mirrors/mixin_application_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698