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

Unified Diff: runtime/vm/object_store.h

Issue 103913005: Introduce class TypeRef in the VM to fully support recursive types. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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/parser.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 31085)
+++ runtime/vm/object_store.h (working copy)
@@ -72,6 +72,9 @@
RawClass* type_class() const { return type_class_; }
void set_type_class(const Class& value) { type_class_ = value.raw(); }
+ RawClass* type_ref_class() const { return type_ref_class_; }
+ void set_type_ref_class(const Class& value) { type_ref_class_ = value.raw(); }
+
RawClass* type_parameter_class() const { return type_parameter_class_; }
void set_type_parameter_class(const Class& value) {
type_parameter_class_ = value.raw();
@@ -421,6 +424,7 @@
RawType* function_type_;
RawType* function_impl_type_;
RawClass* type_class_;
+ RawClass* type_ref_class_;
RawClass* type_parameter_class_;
RawClass* bounded_type_class_;
RawClass* mixin_app_type_class_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698