Changeset 15593 in webkit for trunk/JavaScriptCore/kjs/debugger.cpp
- Timestamp:
- Jul 23, 2006, 11:06:30 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/debugger.cpp
r15026 r15593 81 81 p = &q->next; 82 82 } 83 84 if (interp) 85 latestExceptions.remove(interp); 86 else 87 latestExceptions.clear(); 88 } 89 90 bool Debugger::hasHandledException(ExecState *exec, JSValue *exception) 91 { 92 if (latestExceptions.get(exec->dynamicInterpreter()).get() == exception) 93 return true; 94 95 latestExceptions.set(exec->dynamicInterpreter(), exception); 96 return false; 83 97 } 84 98 … … 95 109 96 110 bool Debugger::exception(ExecState */*exec*/, int /*sourceId*/, int /*lineno*/, 97 JS Object */*exceptionObj*/)111 JSValue */*exception*/) 98 112 { 99 113 return true;
Note:
See TracChangeset
for help on using the changeset viewer.