Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: runtime/vm/object_store.h

Issue 11085003: Convert String to a class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 301293e6758d6821b1285a6c1744cd2afc2486a3..82dff54e1ce569847a262a2ab6307a86c3d816ea 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_; }
@@ -484,7 +484,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* four_byte_string_class_;
« runtime/vm/object.h ('K') | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698