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

Unified Diff: runtime/vm/object_store.h

Issue 22902002: Ensure the classes void and dynamic have empty arrays for fields, functions, etc. Move their Types … (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
Index: runtime/vm/object_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 1d51a8c437ca0d09b2cf0e9b3b3579f697abda9b..11cd78ad70eac75dcdc29ef6873a13f50a20d4d2 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -61,16 +61,6 @@ class ObjectStore {
null_type_ = value.raw();
}
- RawType* dynamic_type() const { return dynamic_type_; }
- void set_dynamic_type(const Type& value) {
- dynamic_type_ = value.raw();
- }
-
- RawType* void_type() const { return void_type_; }
- void set_void_type(const Type& value) {
- void_type_ = value.raw();
- }
-
RawType* function_type() const { return function_type_; }
void set_function_type(const Type& value) {
function_type_ = value.raw();
@@ -435,8 +425,6 @@ class ObjectStore {
RawType* object_type_;
RawClass* null_class_;
RawType* null_type_;
- RawType* dynamic_type_;
- RawType* void_type_;
RawType* function_type_;
RawClass* type_class_;
RawClass* type_parameter_class_;
« runtime/vm/object.cc ('K') | « 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