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

Unified Diff: vm/raw_object_snapshot.cc

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/raw_object.h ('k') | vm/stub_code_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/raw_object_snapshot.cc
===================================================================
--- vm/raw_object_snapshot.cc (revision 15417)
+++ vm/raw_object_snapshot.cc (working copy)
@@ -58,7 +58,7 @@
// Set all non object fields.
cls.set_instance_size(reader->ReadIntptrValue());
- cls.set_type_arguments_instance_field_offset(reader->ReadIntptrValue());
+ cls.set_type_arguments_field_offset(reader->ReadIntptrValue());
cls.set_next_field_offset(reader->ReadIntptrValue());
cls.set_num_native_fields(reader->ReadIntptrValue());
cls.set_token_pos(reader->ReadIntptrValue());
@@ -97,7 +97,7 @@
// NOTE: cpp_vtable_ is not written.
writer->WriteIntptrValue(ptr()->id_);
writer->WriteIntptrValue(ptr()->instance_size_);
- writer->WriteIntptrValue(ptr()->type_arguments_instance_field_offset_);
+ writer->WriteIntptrValue(ptr()->type_arguments_field_offset_);
writer->WriteIntptrValue(ptr()->next_field_offset_);
writer->WriteIntptrValue(ptr()->num_native_fields_);
writer->WriteIntptrValue(ptr()->token_pos_);
« no previous file with comments | « vm/raw_object.h ('k') | vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698