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

Unified Diff: runtime/vm/object_store.h

Issue 8403003: Rename the VM internal 'var' type to 'Dynamic' type. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 2 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 778)
+++ runtime/vm/object_store.h (working copy)
@@ -26,7 +26,7 @@
kFalseValue,
kObjectType,
kNullType,
- kVarType,
+ kDynamicType,
kVoidType,
kFunctionInterface,
kNumberInterface,
@@ -66,8 +66,8 @@
RawType* null_type() const { return null_type_; }
void set_null_type(const Type& value) { null_type_ = value.raw(); }
- RawType* var_type() const { return var_type_; }
- void set_var_type(const Type& value) { var_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(); }
@@ -239,7 +239,7 @@
RawClass* object_class_;
RawType* object_type_;
RawType* null_type_;
- RawType* var_type_;
+ RawType* dynamic_type_;
RawType* void_type_;
RawType* function_interface_;
RawType* number_interface_;
« 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