Ignore:
Timestamp:
Jun 8, 2011, 12:31:48 PM (14 years ago)
Author:
[email protected]
Message:

Reviewed by Eric Seidel.

Add export symbols to debugger headers.
https://bugs.webkit.org/show_bug.cgi?id=27551

Location:
trunk/Source/JavaScriptCore/debugger
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/debugger/Debugger.h

    r76129 r88370  
    3535    class UString;
    3636
    37     class Debugger {
     37    class JS_EXPORT_PRIVATE Debugger {
    3838    public:
    3939        virtual ~Debugger();
  • trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.h

    r79904 r88370  
    5252        ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); }
    5353        const UString* functionName() const;
    54         UString calculatedFunctionName() const;
    55         Type type() const;
    56         JSObject* thisObject() const;
    57         JSValue evaluate(const UString&, JSValue& exception) const;
     54        JS_EXPORT_PRIVATE UString calculatedFunctionName() const;
     55        JS_EXPORT_PRIVATE Type type() const;
     56        JS_EXPORT_PRIVATE JSObject* thisObject() const;
     57        JS_EXPORT_PRIVATE JSValue evaluate(const UString&, JSValue& exception) const;
    5858        JSValue exception() const { return m_exception; }
    5959
Note: See TracChangeset for help on using the changeset viewer.