| Index: runtime/vm/object_store.h
|
| diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
|
| index f59d78c191b2767608fa46e96091499afdff1c7f..f4453a57ad25217410e77d721d618e6f7f73ea83 100644
|
| --- a/runtime/vm/object_store.h
|
| +++ b/runtime/vm/object_store.h
|
| @@ -102,9 +102,9 @@ class ObjectStore {
|
| RawClass* bigint_class() const { return bigint_class_; }
|
| void set_bigint_class(const Class& value) { bigint_class_ = value.raw(); }
|
|
|
| - RawType* string_interface() const { return string_interface_; }
|
| - void set_string_interface(const Type& value) {
|
| - string_interface_ = value.raw();
|
| + RawType* string_type() const { return string_type_; }
|
| + void set_string_type(const Type& value) {
|
| + string_type_ = value.raw();
|
| }
|
|
|
| RawClass* one_byte_string_class() const { return one_byte_string_class_; }
|
| @@ -479,7 +479,7 @@ class ObjectStore {
|
| RawClass* bigint_class_;
|
| RawClass* double_class_;
|
| RawType* double_type_;
|
| - RawType* string_interface_;
|
| + RawType* string_type_;
|
| RawClass* one_byte_string_class_;
|
| RawClass* two_byte_string_class_;
|
| RawClass* external_one_byte_string_class_;
|
|
|