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

Unified Diff: vm/object.h

Issue 11316203: Rename the field type_arguments_instance_field_offset_ to (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 1 month 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 | « vm/intrinsifier_ia32.cc ('k') | vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 15417)
+++ vm/object.h (working copy)
@@ -540,15 +540,15 @@
// If this class is parameterized, each instance has a type_arguments field.
static const intptr_t kNoTypeArguments = -1;
- intptr_t type_arguments_instance_field_offset() const {
+ intptr_t type_arguments_field_offset() const {
ASSERT(is_finalized() || is_prefinalized());
- return raw_ptr()->type_arguments_instance_field_offset_;
+ return raw_ptr()->type_arguments_field_offset_;
}
- void set_type_arguments_instance_field_offset(intptr_t value) const {
- raw_ptr()->type_arguments_instance_field_offset_ = value;
+ void set_type_arguments_field_offset(intptr_t value) const {
+ raw_ptr()->type_arguments_field_offset_ = value;
}
- static intptr_t type_arguments_instance_field_offset_offset() {
- return OFFSET_OF(RawClass, type_arguments_instance_field_offset_);
+ static intptr_t type_arguments_field_offset_offset() {
+ return OFFSET_OF(RawClass, type_arguments_field_offset_);
}
// The super type of this class, Object type if not explicitly specified.
« no previous file with comments | « vm/intrinsifier_ia32.cc ('k') | vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698