Changeset 58779 in webkit for trunk/JavaScriptCore/debugger
- Timestamp:
- May 4, 2010, 3:01:38 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/debugger/DebuggerCallFrame.cpp
r54464 r58779 42 42 return 0; 43 43 44 if (!m_callFrame->callee()) 45 return 0; 46 44 47 JSFunction* function = asFunction(m_callFrame->callee()); 45 48 if (!function) … … 52 55 if (!m_callFrame->codeBlock()) 53 56 return UString(); 54 57 58 if (!m_callFrame->callee()) 59 return UString(); 60 55 61 JSFunction* function = asFunction(m_callFrame->callee()); 56 62 if (!function)
Note:
See TracChangeset
for help on using the changeset viewer.