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

Unified Diff: runtime/lib/mirrors.cc

Issue 71693003: Rename mixin typedef to mixin application alias in VM. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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/lib/mirrors_impl.dart » ('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 30259)
+++ runtime/lib/mirrors.cc (working copy)
@@ -348,7 +348,7 @@
}
const Bool& is_generic = Bool::Get(cls.NumTypeParameters() != 0);
- const Bool& is_mixin_typedef = Bool::Get(cls.is_mixin_typedef());
+ const Bool& is_mixin_app_alias = Bool::Get(cls.is_mixin_app_alias());
const Array& args = Array::Handle(Array::New(6));
args.SetAt(0, MirrorReference::Handle(MirrorReference::New(cls)));
@@ -360,7 +360,7 @@
args.SetAt(2, String::Handle(cls.Name()));
}
args.SetAt(3, is_generic);
- args.SetAt(4, is_mixin_typedef);
+ args.SetAt(4, is_mixin_app_alias);
args.SetAt(5, cls.NumTypeParameters() == 0 ? Bool::False() : is_declaration);
return CreateMirror(Symbols::_LocalClassMirrorImpl(), args);
}
« no previous file with comments | « no previous file | runtime/lib/mirrors_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698