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

Unified Diff: runtime/vm/object_store.h

Issue 12473002: Complete implementation of bounds checking in the vm, by introducing a vm object (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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/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 19513)
+++ runtime/vm/object_store.h (working copy)
@@ -63,6 +63,11 @@
type_parameter_class_ = value.raw();
}
+ RawClass* bounded_type_class() const { return bounded_type_class_; }
+ void set_bounded_type_class(const Class& value) {
+ bounded_type_class_ = value.raw();
+ }
+
RawType* number_type() const { return number_type_; }
void set_number_type(const Type& value) {
number_type_ = value.raw();
@@ -588,6 +593,7 @@
RawType* function_type_;
RawClass* type_class_;
RawClass* type_parameter_class_;
+ RawClass* bounded_type_class_;
RawType* number_type_;
RawType* int_type_;
RawClass* integer_implementation_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