Chromium Code Reviews| Index: runtime/vm/object_store.h |
| =================================================================== |
| --- runtime/vm/object_store.h (revision 26064) |
| +++ runtime/vm/object_store.h (working copy) |
| @@ -66,6 +66,11 @@ |
| function_type_ = value.raw(); |
| } |
| + RawType* dart_function_impl_type() const { return dart_function_impl_type_; } |
|
Ivan Posva
2013/08/14 05:27:57
function_impl_type(), set_function_impl_type and f
Florian Schneider
2013/08/14 09:07:49
Done.
|
| + void set_dart_function_impl_type(const Type& value) { |
| + dart_function_impl_type_ = value.raw(); |
| + } |
| + |
| RawClass* type_class() const { return type_class_; } |
| void set_type_class(const Class& value) { type_class_ = value.raw(); } |
| @@ -426,6 +431,7 @@ |
| RawClass* null_class_; |
| RawType* null_type_; |
| RawType* function_type_; |
| + RawType* dart_function_impl_type_; |
| RawClass* type_class_; |
| RawClass* type_parameter_class_; |
| RawClass* bounded_type_class_; |