Changeset 9347 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 9, 2005, 6:03:36 AM (20 years ago)
Author:
darin
Message:

Change by Mark Rowe <[email protected]>
Reviewed by me.

  • kjs/nodes.cpp: Get rid of unneeded this->.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r9338 r9347  
     12005-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
    182005-06-08  Maciej Stachowiak  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/nodes.cpp

    r9338 r9347  
    7676  if (exec->hadException()) {\
    7777    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)); \
    8080    return exec->exception(); \
    8181  }\
Note: See TracChangeset for help on using the changeset viewer.