Changeset 11527 in webkit for trunk/JavaScriptCore/kjs/debugger.h
- Timestamp:
- Dec 10, 2005, 6:06:17 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/debugger.h
r10084 r11527 29 29 class Interpreter; 30 30 class ExecState; 31 class ObjectImp;31 class JSObject; 32 32 class UString; 33 33 class List; … … 142 142 */ 143 143 virtual bool exception(ExecState *exec, int sourceId, int lineno, 144 ObjectImp*exceptionObj);144 JSObject *exceptionObj); 145 145 146 146 /** … … 182 182 */ 183 183 virtual bool callEvent(ExecState *exec, int sourceId, int lineno, 184 ObjectImp*function, const List &args);184 JSObject *function, const List &args); 185 185 186 186 /** … … 203 203 */ 204 204 virtual bool returnEvent(ExecState *exec, int sourceId, int lineno, 205 ObjectImp*function);205 JSObject *function); 206 206 207 207 private:
Note:
See TracChangeset
for help on using the changeset viewer.