Changeset 34334 in webkit for trunk/JavaScriptCore/kjs/function_object.cpp
- Timestamp:
- Jun 2, 2008, 11:26:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function_object.cpp
r34273 r34334 105 105 } 106 106 107 return thisObj->call (exec, applyThis, applyArgs);107 return thisObj->callAsFunction(exec, applyThis, applyArgs); 108 108 } 109 109 … … 123 123 List argsTail; 124 124 args.getSlice(1, argsTail); 125 return thisObj->call (exec, callThis, argsTail);125 return thisObj->callAsFunction(exec, callThis, argsTail); 126 126 } 127 127
Note:
See TracChangeset
for help on using the changeset viewer.