Changeset 9338 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Jun 8, 2005, 12:09:50 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r9078 r9338 74 74 75 75 #define KJS_CHECKEXCEPTIONVALUE \ 76 if (exec->hadException()) \ 76 if (exec->hadException()) {\ 77 Object exception = exec->exception().toObject(exec); \ 78 exception.put(exec, "line", Number(this->line)); \ 79 exception.put(exec, "sourceURL", String(this->sourceURL)); \ 77 80 return exec->exception(); \ 81 }\ 78 82 if (Collector::outOfMemory()) \ 79 83 return Undefined(); // will be picked up by KJS_CHECKEXCEPTION
Note:
See TracChangeset
for help on using the changeset viewer.