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

Unified Diff: runtime/vm/class_finalizer.cc

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 | « pkg/observe/lib/src/observable.dart ('k') | sdk/lib/_collection_dev/list.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/class_finalizer.cc
diff --git a/runtime/vm/class_finalizer.cc b/runtime/vm/class_finalizer.cc
index 42e0ffbc52a5102762632bc3bc0a075c94253cb5..c8e2d2a5c40a2d090fd68a709f6fc063f80c7248 100644
--- a/runtime/vm/class_finalizer.cc
+++ b/runtime/vm/class_finalizer.cc
@@ -1489,8 +1489,8 @@ class I<T> { }
class J<T> { }
class S<T> { }
class M<T> { }
-typedef A<U, V> = Object with M<Map<U, V>> implements I<V>;
-typedef C<T, K> = S<T> with A<T, List<K>> implements J<K>;
+class A<U, V> = Object with M<Map<U, V>> implements I<V>;
+class C<T, K> = S<T> with A<T, List<K>> implements J<K>;
Before the call to ApplyMixinTypedef, the VM has already synthesized 2 mixin
application classes Object&M and S&A:
« no previous file with comments | « pkg/observe/lib/src/observable.dart ('k') | sdk/lib/_collection_dev/list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698