Changeset 9347 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 9, 2005, 6:03:36 AM (20 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r9338 r9347 1 2005-06-09 Darin Adler <[email protected]> 2 3 Change by Mark Rowe <[email protected]> 4 Reviewed by me. 5 6 * kjs/nodes.cpp: Get rid of unneeded this->. 7 1 8 2005-06-08 Maciej Stachowiak <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/nodes.cpp
r9338 r9347 76 76 if (exec->hadException()) {\ 77 77 Object exception = exec->exception().toObject(exec); \ 78 exception.put(exec, "line", Number( this->line)); \79 exception.put(exec, "sourceURL", String( this->sourceURL)); \78 exception.put(exec, "line", Number(line)); \ 79 exception.put(exec, "sourceURL", String(sourceURL)); \ 80 80 return exec->exception(); \ 81 81 }\
Note:
See TracChangeset
for help on using the changeset viewer.