| Index: runtime/vm/object_store.h
|
| diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
|
| index 1d51a8c437ca0d09b2cf0e9b3b3579f697abda9b..11cd78ad70eac75dcdc29ef6873a13f50a20d4d2 100644
|
| --- a/runtime/vm/object_store.h
|
| +++ b/runtime/vm/object_store.h
|
| @@ -61,16 +61,6 @@ class ObjectStore {
|
| null_type_ = value.raw();
|
| }
|
|
|
| - RawType* dynamic_type() const { return dynamic_type_; }
|
| - void set_dynamic_type(const Type& value) {
|
| - dynamic_type_ = value.raw();
|
| - }
|
| -
|
| - RawType* void_type() const { return void_type_; }
|
| - void set_void_type(const Type& value) {
|
| - void_type_ = value.raw();
|
| - }
|
| -
|
| RawType* function_type() const { return function_type_; }
|
| void set_function_type(const Type& value) {
|
| function_type_ = value.raw();
|
| @@ -435,8 +425,6 @@ class ObjectStore {
|
| RawType* object_type_;
|
| RawClass* null_class_;
|
| RawType* null_type_;
|
| - RawType* dynamic_type_;
|
| - RawType* void_type_;
|
| RawType* function_type_;
|
| RawClass* type_class_;
|
| RawClass* type_parameter_class_;
|
|
|