| 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:
|
|
|