Index: runtime/vm/object_store.h |
=================================================================== |
--- runtime/vm/object_store.h (revision 20082) |
+++ runtime/vm/object_store.h (working copy) |
@@ -68,6 +68,11 @@ |
bounded_type_class_ = value.raw(); |
} |
+ RawClass* mixin_app_type_class() const { return mixin_app_type_class_; } |
+ void set_mixin_app_type_class(const Class& value) { |
+ mixin_app_type_class_ = value.raw(); |
+ } |
+ |
RawType* number_type() const { return number_type_; } |
void set_number_type(const Type& value) { |
number_type_ = value.raw(); |
@@ -601,6 +606,7 @@ |
RawClass* type_class_; |
RawClass* type_parameter_class_; |
RawClass* bounded_type_class_; |
+ RawClass* mixin_app_type_class_; |
RawType* number_type_; |
RawType* int_type_; |
RawClass* integer_implementation_class_; |