Changeset 34047 in webkit for trunk/JavaScriptCore/profiler/Profiler.cpp
- Timestamp:
- May 22, 2008, 9:32:33 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/Profiler.cpp
r34036 r34047 161 161 return CallIdentifier(static_cast<InternalFunctionImp*>(calledFunction)->functionName().ustring(), "", 0); 162 162 163 ASSERT_NOT_REACHED(); 164 return CallIdentifier("", 0, 0); 163 UString name = "("; 164 name += calledFunction->classInfo()->className; 165 name += " object)"; 166 return CallIdentifier(name, 0, 0); 165 167 } 166 168
Note:
See TracChangeset
for help on using the changeset viewer.