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

Unified Diff: runtime/vm/object.cc

Issue 23190003: ClassMirror.mixin (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 7 years, 4 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
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 6fcb9fa4da49f2a5654357da6cf93673a2fe863f..b9d409336d5a663c0049961c99aaef554ec26ee8 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -2304,6 +2304,11 @@ void Class::set_is_const() const {
}
+void Class::set_is_mixin_typedef() const {
+ set_state_bits(MixinTypedefBit::update(true, raw_ptr()->state_bits_));
+}
+
+
void Class::set_is_finalized() const {
ASSERT(!is_finalized());
set_state_bits(StateBits::update(RawClass::kFinalized,

Powered by Google App Engine
This is Rietveld 408576698