Changeset 41912 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Mar 23, 2009, 11:27:22 AM (16 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Completion.cpp
r40046 r41912 69 69 if (exception) { 70 70 if (exception.isObject() && asObject(exception)->isWatchdogException()) 71 return Completion(Interrupted, result);71 return Completion(Interrupted, exception); 72 72 return Completion(Throw, exception); 73 73 } -
trunk/JavaScriptCore/runtime/ExceptionHelpers.cpp
r40169 r41912 48 48 49 49 virtual bool isWatchdogException() const { return true; } 50 51 virtual UString toString(ExecState*) const { return "JavaScript execution exceeded timeout."; } 50 52 }; 51 53
Note:
See TracChangeset
for help on using the changeset viewer.