X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/14957cd040308e3eeec43d26bae5d76da13fcd85..93a3786624b2768d89bfa27e46598dc64e2fb70a:/debugger/DebuggerCallFrame.h?ds=sidebyside diff --git a/debugger/DebuggerCallFrame.h b/debugger/DebuggerCallFrame.h index f6b415c..66585a6 100644 --- a/debugger/DebuggerCallFrame.h +++ b/debugger/DebuggerCallFrame.h @@ -48,13 +48,14 @@ namespace JSC { { } + CallFrame* callFrame() const { return m_callFrame; } JSGlobalObject* dynamicGlobalObject() const { return m_callFrame->dynamicGlobalObject(); } - ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); } - const UString* functionName() const; - UString calculatedFunctionName() const; - Type type() const; - JSObject* thisObject() const; - JSValue evaluate(const UString&, JSValue& exception) const; + JSScope* scope() const { return m_callFrame->scope(); } + JS_EXPORT_PRIVATE String functionName() const; + JS_EXPORT_PRIVATE String calculatedFunctionName() const; + JS_EXPORT_PRIVATE Type type() const; + JS_EXPORT_PRIVATE JSObject* thisObject() const; + JS_EXPORT_PRIVATE JSValue evaluate(const String&, JSValue& exception) const; JSValue exception() const { return m_exception; } private: