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

Unified Diff: vm/object_store.h

Issue 10827249: - Register canonical names for internal VM classes and get rid of the method GetSingletonClassName (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
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 | « vm/object.cc ('k') | vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object_store.h
===================================================================
--- vm/object_store.h (revision 10528)
+++ vm/object_store.h (working copy)
@@ -421,9 +421,6 @@
RawBool* false_value() const { return false_value_; }
void set_false_value(const Bool& value) { false_value_ = value.raw(); }
- RawArray* empty_array() const { return empty_array_; }
- void set_empty_array(const Array& value) { empty_array_ = value.raw(); }
-
RawContext* empty_context() const { return empty_context_; }
void set_empty_context(const Context& value) {
empty_context_ = value.raw();
@@ -514,7 +511,6 @@
RawClass* jsregexp_class_;
RawBool* true_value_;
RawBool* false_value_;
- RawArray* empty_array_;
RawArray* symbol_table_;
RawArray* canonical_type_arguments_;
RawLibrary* core_library_;
« no previous file with comments | « vm/object.cc ('k') | vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698