| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 918c62b5fab6495c052e11e1a9f1260d6b3c2849..3f84b541623e5145277f33ec4027c3f42e10263c 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -2349,6 +2349,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,
|
|
|