Changeset 34842 in webkit for trunk/JavaScriptCore/VM/ExceptionHelpers.cpp
- Timestamp:
- Jun 27, 2008, 9:02:03 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/ExceptionHelpers.cpp
r34581 r34842 44 44 newString.append(string.substr(position + 2)); 45 45 string = newString; 46 } 47 48 class InterruptedExecutionError : public JSObject { 49 public: 50 virtual bool isWatchdogException() const { return true; } 51 }; 52 53 JSValue* createInterruptedExecutionException(ExecState* exec) 54 { 55 return new (exec) InterruptedExecutionError; 46 56 } 47 57
Note:
See TracChangeset
for help on using the changeset viewer.