Revision: 3881 Author: [email protected] Date: Tue Feb 16 23:14:43 2010 Log: Add class name into FunctionTemplateInfo debug printing.
Review URL: http://codereview.chromium.org/608015 http://code.google.com/p/v8/source/detail?r=3881 Modified: /branches/bleeding_edge/src/objects-debug.cc ======================================= --- /branches/bleeding_edge/src/objects-debug.cc Tue Dec 22 05:34:02 2009 +++ /branches/bleeding_edge/src/objects-debug.cc Tue Feb 16 23:14:43 2010 @@ -1036,6 +1036,8 @@ void FunctionTemplateInfo::FunctionTemplateInfoPrint() { HeapObject::PrintHeader("FunctionTemplateInfo"); + PrintF("\n - class name: "); + class_name()->ShortPrint(); PrintF("\n - tag: "); tag()->ShortPrint(); PrintF("\n - property_list: "); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
