X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/6fe7ccc865dc7d7541b93c5bcaf6368d2c98a174..8b637bb680022adfddad653280734877951535a9:/debugger/DebuggerCallFrame.h diff --git a/debugger/DebuggerCallFrame.h b/debugger/DebuggerCallFrame.h index 8605af5..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(); } - JS_EXPORT_PRIVATE const UString* functionName() const; - JS_EXPORT_PRIVATE UString calculatedFunctionName() 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 UString&, JSValue& exception) const; + JS_EXPORT_PRIVATE JSValue evaluate(const String&, JSValue& exception) const; JSValue exception() const { return m_exception; } private: