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

Unified Diff: runtime/lib/mirrors.cc

Issue 23453024: Keep track of type parameter processing in mixin application classes. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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 | « no previous file | runtime/vm/class_finalizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/mirrors.cc
===================================================================
--- runtime/lib/mirrors.cc (revision 27156)
+++ runtime/lib/mirrors.cc (working copy)
@@ -322,7 +322,7 @@
// We do not set the names of anonymous mixin applications because the mirrors
// use a different naming convention than the VM (lib.S with lib.M and S&M
// respectively).
- if ((cls.mixin() == Type::null()) || cls.is_mixin_typedef()) {
+ if (!cls.IsMixinApplication() || cls.is_mixin_typedef()) {
args.SetAt(2, String::Handle(cls.UserVisibleName()));
}
args.SetAt(3, is_generic);
« no previous file with comments | « no previous file | runtime/vm/class_finalizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698