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 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1061 needs_access_check() ? "true" : "false"); | 1061 needs_access_check() ? "true" : "false"); |
1062 } | 1062 } |
1063 | 1063 |
1064 | 1064 |
1065 void ObjectTemplateInfo::ObjectTemplateInfoPrint(FILE* out) { | 1065 void ObjectTemplateInfo::ObjectTemplateInfoPrint(FILE* out) { |
1066 HeapObject::PrintHeader(out, "ObjectTemplateInfo"); | 1066 HeapObject::PrintHeader(out, "ObjectTemplateInfo"); |
1067 PrintF(out, " - tag: "); | 1067 PrintF(out, " - tag: "); |
1068 tag()->ShortPrint(out); | 1068 tag()->ShortPrint(out); |
1069 PrintF(out, "\n - property_list: "); | 1069 PrintF(out, "\n - property_list: "); |
1070 property_list()->ShortPrint(out); | 1070 property_list()->ShortPrint(out); |
| 1071 PrintF(out, "\n - property_accessors: "); |
| 1072 property_accessors()->ShortPrint(out); |
1071 PrintF(out, "\n - constructor: "); | 1073 PrintF(out, "\n - constructor: "); |
1072 constructor()->ShortPrint(out); | 1074 constructor()->ShortPrint(out); |
1073 PrintF(out, "\n - internal_field_count: "); | 1075 PrintF(out, "\n - internal_field_count: "); |
1074 internal_field_count()->ShortPrint(out); | 1076 internal_field_count()->ShortPrint(out); |
1075 PrintF(out, "\n"); | 1077 PrintF(out, "\n"); |
1076 } | 1078 } |
1077 | 1079 |
1078 | 1080 |
1079 void SignatureInfo::SignatureInfoPrint(FILE* out) { | 1081 void SignatureInfo::SignatureInfoPrint(FILE* out) { |
1080 HeapObject::PrintHeader(out, "SignatureInfo"); | 1082 HeapObject::PrintHeader(out, "SignatureInfo"); |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1230 } | 1232 } |
1231 } | 1233 } |
1232 PrintF(out, "\n"); | 1234 PrintF(out, "\n"); |
1233 } | 1235 } |
1234 | 1236 |
1235 | 1237 |
1236 #endif // OBJECT_PRINT | 1238 #endif // OBJECT_PRINT |
1237 | 1239 |
1238 | 1240 |
1239 } } // namespace v8::internal | 1241 } } // namespace v8::internal |
OLD | NEW |