Changeset 35203 in webkit for trunk/JavaScriptCore/kjs/DebuggerCallFrame.cpp
- Timestamp:
- Jul 16, 2008, 3:47:32 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/DebuggerCallFrame.cpp
r34906 r35203 47 47 return 0; 48 48 49 JSFunction* function = static_cast<JSFunction*>(callFrame()[RegisterFile::Callee]. u.jsValue);49 JSFunction* function = static_cast<JSFunction*>(callFrame()[RegisterFile::Callee].jsValue()); 50 50 if (!function) 51 51 return 0; … … 55 55 DebuggerCallFrame::Type DebuggerCallFrame::type() const 56 56 { 57 if (callFrame()[RegisterFile::Callee]. u.jsObject)57 if (callFrame()[RegisterFile::Callee].jsValue()) 58 58 return FunctionType; 59 59 … … 66 66 return 0; 67 67 68 return static_cast<JSObject*>(m_registers[m_codeBlock->thisRegister]. u.jsValue);68 return static_cast<JSObject*>(m_registers[m_codeBlock->thisRegister].jsValue()); 69 69 } 70 70
Note:
See TracChangeset
for help on using the changeset viewer.