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

Unified Diff: runtime/vm/object_store.h

Issue 257413002: - Remove some unnecessary classes from the object store. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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 35325)
+++ runtime/vm/object_store.h (working copy)
@@ -251,16 +251,6 @@
return OFFSET_OF(ObjectStore, stacktrace_class_);
}
- RawClass* jsregexp_class() const {
- return jsregexp_class_;
- }
- void set_jsregexp_class(const Class& value) {
- jsregexp_class_ = value.raw();
- }
- static intptr_t jsregexp_class_offset() {
- return OFFSET_OF(ObjectStore, jsregexp_class_);
- }
-
RawClass* weak_property_class() const {
return weak_property_class_;
}
@@ -268,20 +258,6 @@
weak_property_class_ = value.raw();
}
- RawClass* mirror_reference_class() const {
- return mirror_reference_class_;
- }
- void set_mirror_reference_class(const Class& value) {
- mirror_reference_class_ = value.raw();
- }
-
- RawClass* user_tag_class() const {
- return user_tag_class_;
- }
- void set_user_tag_class(const Class& value) {
- user_tag_class_ = value.raw();
- }
-
RawArray* symbol_table() const { return symbol_table_; }
void set_symbol_table(const Array& value) { symbol_table_ = value.raw(); }
@@ -477,10 +453,7 @@
RawArray* typed_data_classes_;
RawClass* error_class_;
RawClass* stacktrace_class_;
- RawClass* jsregexp_class_;
RawClass* weak_property_class_;
- RawClass* mirror_reference_class_;
- RawClass* user_tag_class_;
RawArray* symbol_table_;
RawArray* canonical_type_arguments_;
RawLibrary* async_library_;
« 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