OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |