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

Unified Diff: runtime/vm/object_store.h

Issue 18737004: List class was not initialized properly (it has type parameters). Do not preinitialize it incorrect… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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
===================================================================
--- runtime/vm/object_store.h (revision 24887)
+++ runtime/vm/object_store.h (working copy)
@@ -161,9 +161,6 @@
RawClass* bool_class() const { return bool_class_; }
void set_bool_class(const Class& value) { bool_class_ = value.raw(); }
- RawClass* list_class() const { return list_class_; }
- void set_list_class(const Class& value) { list_class_ = value.raw(); }
-
RawClass* array_class() const { return array_class_; }
void set_array_class(const Class& value) { array_class_ = value.raw(); }
static intptr_t array_class_offset() {
@@ -442,7 +439,6 @@
RawClass* external_two_byte_string_class_;
RawType* bool_type_;
RawClass* bool_class_;
- RawClass* list_class_;
RawClass* array_class_;
RawType* array_type_;
RawClass* immutable_array_class_;

Powered by Google App Engine
This is Rietveld 408576698