Changeset 153238 in webkit for trunk/Source/JavaScriptCore/runtime/JSCJSValue.cpp
- Timestamp:
- Jul 24, 2013, 9:03:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSCJSValue.cpp
r153225 r153238 217 217 out.print(" (unresolved)"); 218 218 out.print(": ", impl); 219 } else if (asCell()->inherits(&Structure::s_info)) { 220 Structure* structure = jsCast<Structure*>(asCell()); 221 out.print( 222 "Structure: ", RawPointer(structure), ": ", structure->classInfo()->className, 223 ", ", IndexingTypeDump(structure->indexingTypeIncludingHistory())); 224 } else { 219 } else if (asCell()->inherits(&Structure::s_info)) 220 out.print("Structure: ", *jsCast<Structure*>(asCell())); 221 else { 225 222 out.print("Cell: ", RawPointer(asCell())); 226 223 if (isObject() && asObject(*this)->butterfly()) 227 224 out.print("->", RawPointer(asObject(*this)->butterfly())); 228 out.print( 229 " (", RawPointer(asCell()->structure()), ": ", asCell()->structure()->classInfo()->className, 230 ", ", IndexingTypeDump(asCell()->structure()->indexingTypeIncludingHistory()), ")"); 225 out.print(" (", *asCell()->structure(), ")"); 231 226 } 232 227 } else if (isTrue())
Note:
See TracChangeset
for help on using the changeset viewer.