| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 VerifyPointer(parent_template()); | 1026 VerifyPointer(parent_template()); |
| 1027 VerifyPointer(named_property_handler()); | 1027 VerifyPointer(named_property_handler()); |
| 1028 VerifyPointer(indexed_property_handler()); | 1028 VerifyPointer(indexed_property_handler()); |
| 1029 VerifyPointer(instance_template()); | 1029 VerifyPointer(instance_template()); |
| 1030 VerifyPointer(signature()); | 1030 VerifyPointer(signature()); |
| 1031 VerifyPointer(access_check_info()); | 1031 VerifyPointer(access_check_info()); |
| 1032 } | 1032 } |
| 1033 | 1033 |
| 1034 void FunctionTemplateInfo::FunctionTemplateInfoPrint() { | 1034 void FunctionTemplateInfo::FunctionTemplateInfoPrint() { |
| 1035 HeapObject::PrintHeader("FunctionTemplateInfo"); | 1035 HeapObject::PrintHeader("FunctionTemplateInfo"); |
| 1036 PrintF("\n - class name: "); |
| 1037 class_name()->ShortPrint(); |
| 1036 PrintF("\n - tag: "); | 1038 PrintF("\n - tag: "); |
| 1037 tag()->ShortPrint(); | 1039 tag()->ShortPrint(); |
| 1038 PrintF("\n - property_list: "); | 1040 PrintF("\n - property_list: "); |
| 1039 property_list()->ShortPrint(); | 1041 property_list()->ShortPrint(); |
| 1040 PrintF("\n - serial_number: "); | 1042 PrintF("\n - serial_number: "); |
| 1041 serial_number()->ShortPrint(); | 1043 serial_number()->ShortPrint(); |
| 1042 PrintF("\n - call_code: "); | 1044 PrintF("\n - call_code: "); |
| 1043 call_code()->ShortPrint(); | 1045 call_code()->ShortPrint(); |
| 1044 PrintF("\n - property_accessors: "); | 1046 PrintF("\n - property_accessors: "); |
| 1045 property_accessors()->ShortPrint(); | 1047 property_accessors()->ShortPrint(); |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1305 } | 1307 } |
| 1306 current = hash; | 1308 current = hash; |
| 1307 } | 1309 } |
| 1308 return true; | 1310 return true; |
| 1309 } | 1311 } |
| 1310 | 1312 |
| 1311 | 1313 |
| 1312 #endif // DEBUG | 1314 #endif // DEBUG |
| 1313 | 1315 |
| 1314 } } // namespace v8::internal | 1316 } } // namespace v8::internal |
| OLD | NEW |