X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/9dae56ea45a0f5f8136a5c93d6f3a7f99399ca73..14957cd040308e3eeec43d26bae5d76da13fcd85:/debugger/DebuggerCallFrame.h?ds=inline diff --git a/debugger/DebuggerCallFrame.h b/debugger/DebuggerCallFrame.h index cdf4965..f6b415c 100644 --- a/debugger/DebuggerCallFrame.h +++ b/debugger/DebuggerCallFrame.h @@ -39,27 +39,27 @@ namespace JSC { DebuggerCallFrame(CallFrame* callFrame) : m_callFrame(callFrame) - , m_exception(noValue()) { } - DebuggerCallFrame(CallFrame* callFrame, JSValuePtr exception) + DebuggerCallFrame(CallFrame* callFrame, JSValue exception) : m_callFrame(callFrame) , m_exception(exception) { } JSGlobalObject* dynamicGlobalObject() const { return m_callFrame->dynamicGlobalObject(); } - const ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); } + ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); } const UString* functionName() const; + UString calculatedFunctionName() const; Type type() const; JSObject* thisObject() const; - JSValuePtr evaluate(const UString&, JSValuePtr& exception) const; - JSValuePtr exception() const { return m_exception; } + JSValue evaluate(const UString&, JSValue& exception) const; + JSValue exception() const { return m_exception; } private: CallFrame* m_callFrame; - JSValuePtr m_exception; + JSValue m_exception; }; } // namespace JSC