| Index: sky/engine/core/inspector/ScriptCallFrame.cpp
|
| diff --git a/sky/engine/core/inspector/ScriptCallFrame.cpp b/sky/engine/core/inspector/ScriptCallFrame.cpp
|
| index d1e43cb939b18190bed8f029a2d72c012c2a88dd..ef69b23f06fc500f17a3b4139c117a4f13af6835 100644
|
| --- a/sky/engine/core/inspector/ScriptCallFrame.cpp
|
| +++ b/sky/engine/core/inspector/ScriptCallFrame.cpp
|
| @@ -55,4 +55,15 @@ ScriptCallFrame::~ScriptCallFrame()
|
| {
|
| }
|
|
|
| +PassRefPtr<TypeBuilder::Console::CallFrame> ScriptCallFrame::buildInspectorObject() const
|
| +{
|
| + return TypeBuilder::Console::CallFrame::create()
|
| + .setFunctionName(m_functionName)
|
| + .setScriptId(m_scriptId)
|
| + .setUrl(m_scriptName)
|
| + .setLineNumber(m_lineNumber)
|
| + .setColumnNumber(m_column)
|
| + .release();
|
| +}
|
| +
|
| } // namespace blink
|
|
|