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

Side by Side Diff: src/objects-printer.cc

Issue 23182003: Push SetAccessor to Template (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase, grokdump Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/objects-inl.h ('k') | test/cctest/test-accessors.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 needs_access_check() ? "true" : "false"); 1063 needs_access_check() ? "true" : "false");
1064 } 1064 }
1065 1065
1066 1066
1067 void ObjectTemplateInfo::ObjectTemplateInfoPrint(FILE* out) { 1067 void ObjectTemplateInfo::ObjectTemplateInfoPrint(FILE* out) {
1068 HeapObject::PrintHeader(out, "ObjectTemplateInfo"); 1068 HeapObject::PrintHeader(out, "ObjectTemplateInfo");
1069 PrintF(out, " - tag: "); 1069 PrintF(out, " - tag: ");
1070 tag()->ShortPrint(out); 1070 tag()->ShortPrint(out);
1071 PrintF(out, "\n - property_list: "); 1071 PrintF(out, "\n - property_list: ");
1072 property_list()->ShortPrint(out); 1072 property_list()->ShortPrint(out);
1073 PrintF(out, "\n - property_accessors: ");
1074 property_accessors()->ShortPrint(out);
1073 PrintF(out, "\n - constructor: "); 1075 PrintF(out, "\n - constructor: ");
1074 constructor()->ShortPrint(out); 1076 constructor()->ShortPrint(out);
1075 PrintF(out, "\n - internal_field_count: "); 1077 PrintF(out, "\n - internal_field_count: ");
1076 internal_field_count()->ShortPrint(out); 1078 internal_field_count()->ShortPrint(out);
1077 PrintF(out, "\n"); 1079 PrintF(out, "\n");
1078 } 1080 }
1079 1081
1080 1082
1081 void SignatureInfo::SignatureInfoPrint(FILE* out) { 1083 void SignatureInfo::SignatureInfoPrint(FILE* out) {
1082 HeapObject::PrintHeader(out, "SignatureInfo"); 1084 HeapObject::PrintHeader(out, "SignatureInfo");
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1232 } 1234 }
1233 } 1235 }
1234 PrintF(out, "\n"); 1236 PrintF(out, "\n");
1235 } 1237 }
1236 1238
1237 1239
1238 #endif // OBJECT_PRINT 1240 #endif // OBJECT_PRINT
1239 1241
1240 1242
1241 } } // namespace v8::internal 1243 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | test/cctest/test-accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698