Changeset 15593 in webkit for trunk/JavaScriptCore/kjs/debugger.h
- Timestamp:
- Jul 23, 2006, 11:06:30 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/debugger.h
r15026 r15593 24 24 #define _KJSDEBUGGER_H_ 25 25 26 #include <wtf/HashMap.h> 27 #include "protect.h" 28 26 29 namespace KJS { 27 30 … … 30 33 class ExecState; 31 34 class JSObject; 35 class JSValue; 32 36 class UString; 33 37 class List; … … 145 149 */ 146 150 virtual bool exception(ExecState *exec, int sourceId, int lineno, 147 JSObject *exceptionObj); 151 JSValue *exception); 152 153 bool hasHandledException(ExecState *, JSValue *); 148 154 149 155 /** … … 210 216 private: 211 217 DebuggerImp *rep; 218 HashMap<Interpreter*, ProtectedPtr<JSValue> > latestExceptions; 212 219 213 220 public:
Note:
See TracChangeset
for help on using the changeset viewer.