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

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: Merged to tip of bleeding_edge. Updated test expecteation Created 8 years, 1 month 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
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « 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