X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/ba379fdc102753d6be2c4d937058fe40257329fe..8b637bb680022adfddad653280734877951535a9:/debugger/DebuggerCallFrame.h diff --git a/debugger/DebuggerCallFrame.h b/debugger/DebuggerCallFrame.h index 9d377ef..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(); } - const 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: