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

Unified Diff: runtime/vm/object_store.h

Issue 10874071: Eliminate interface bool (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
« 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
===================================================================
--- runtime/vm/object_store.h (revision 11414)
+++ runtime/vm/object_store.h (working copy)
@@ -140,10 +140,8 @@
external_four_byte_string_class_ = value.raw();
}
- RawType* bool_interface() const { return bool_interface_; }
- void set_bool_interface(const Type& value) {
- bool_interface_ = value.raw();
- }
+ RawType* bool_type() const { return bool_type_; }
+ void set_bool_type(const Type& value) { bool_type_ = value.raw(); }
RawClass* bool_class() const { return bool_class_; }
void set_bool_class(const Class& value) { bool_class_ = value.raw(); }
@@ -492,7 +490,7 @@
RawClass* external_one_byte_string_class_;
RawClass* external_two_byte_string_class_;
RawClass* external_four_byte_string_class_;
- RawType* bool_interface_;
+ RawType* bool_type_;
RawClass* bool_class_;
RawType* list_interface_;
RawClass* array_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