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

Unified Diff: tests/language/mixin_mixin3_test.dart

Issue 27300003: Change "typedef" to "class" in core library and related tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update some dart2js tests and unparser. 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/language/mixin_mixin2_test.dart ('k') | tests/language/mixin_mixin4_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/mixin_mixin3_test.dart
diff --git a/tests/language/mixin_mixin3_test.dart b/tests/language/mixin_mixin3_test.dart
index 844dd30d75b51d9f9329e5cbf6cb64331bade00e..45bbd49e29d532ba21d25f7df8ed908272cd387b 100644
--- a/tests/language/mixin_mixin3_test.dart
+++ b/tests/language/mixin_mixin3_test.dart
@@ -8,21 +8,21 @@ class M<T> {
t() { return T; }
}
-typedef A<U> = Object with M<List<U>>;
+class A<U> = Object with M<List<U>>;
-typedef B0 = Object with A<Set<bool>>;
+class B0 = Object with A<Set<bool>>;
-typedef B1 = Object with A<Set<int>>;
+class B1 = Object with A<Set<int>>;
class C0 extends B0 { }
class C1 extends B1 { }
-typedef A2<K, V> = Object with M<Map<K, V>>;
+class A2<K, V> = Object with M<Map<K, V>>;
-typedef B2<V> = Object with A2<Set<V>, List<V>>;
+class B2<V> = Object with A2<Set<V>, List<V>>;
-typedef B3<K, V> = Object with A2<Set<K>, List<V>>;
+class B3<K, V> = Object with A2<Set<K>, List<V>>;
class C2<T> extends B2<T> { }
@@ -32,9 +32,9 @@ class N {
q() { return 42; }
}
-typedef O<U> = Object with N;
+class O<U> = Object with N;
-typedef P<K, V> = Object with O<V>;
+class P<K, V> = Object with O<V>;
class Q<K, V> extends P<K, V> { }
« no previous file with comments | « tests/language/mixin_mixin2_test.dart ('k') | tests/language/mixin_mixin4_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698