Changeset 88370 in webkit for trunk/Source/JavaScriptCore/debugger
- Timestamp:
- Jun 8, 2011, 12:31:48 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore/debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/Debugger.h
r76129 r88370 35 35 class UString; 36 36 37 class Debugger {37 class JS_EXPORT_PRIVATE Debugger { 38 38 public: 39 39 virtual ~Debugger(); -
trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.h
r79904 r88370 52 52 ScopeChainNode* scopeChain() const { return m_callFrame->scopeChain(); } 53 53 const UString* functionName() const; 54 UString calculatedFunctionName() const;55 Type type() const;56 JS Object* thisObject() const;57 JS Value 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; 58 58 JSValue exception() const { return m_exception; } 59 59
Note:
See TracChangeset
for help on using the changeset viewer.