| Index: runtime/vm/object_store.h
|
| diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
|
| index fde7670ab76de5cc399c46f18eb29a4e5f520d1f..5ceabd5020038d2615f84ce6d9bbba59890ed45a 100644
|
| --- a/runtime/vm/object_store.h
|
| +++ b/runtime/vm/object_store.h
|
| @@ -181,6 +181,9 @@ class ObjectStore {
|
| float32x4_class_ = value.raw();
|
| }
|
|
|
| + RawType* float32x4_type() const { return float32x4_type_; }
|
| + void set_float32x4_type(const Type& value) { float32x4_type_ = value.raw(); }
|
| +
|
| RawClass* uint32x4_class() const {
|
| return uint32x4_class_;
|
| }
|
| @@ -188,6 +191,9 @@ class ObjectStore {
|
| uint32x4_class_ = value.raw();
|
| }
|
|
|
| + RawType* uint32x4_type() const { return uint32x4_type_; }
|
| + void set_uint32x4_type(const Type& value) { uint32x4_type_ = value.raw(); }
|
| +
|
| RawArray* typeddata_classes() const {
|
| return typeddata_classes_;
|
| }
|
| @@ -442,6 +448,8 @@ class ObjectStore {
|
| RawClass* bigint_class_;
|
| RawClass* double_class_;
|
| RawType* double_type_;
|
| + RawType* float32x4_type_;
|
| + RawType* uint32x4_type_;
|
| RawType* string_type_;
|
| RawClass* one_byte_string_class_;
|
| RawClass* two_byte_string_class_;
|
|
|