Changeset 34334 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Jun 2, 2008, 11:26:54 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r34319 r34334 1282 1282 1283 1283 JSObject* thisObj = base->toThisObject(exec); 1284 return func->call (exec, thisObj, argList);1284 return func->callAsFunction(exec, thisObj, argList); 1285 1285 } 1286 1286 ++iter; … … 1341 1341 1342 1342 JSObject* thisObj = exec->globalThisValue(); 1343 return func->call (exec, thisObj, argList);1343 return func->callAsFunction(exec, thisObj, argList); 1344 1344 } 1345 1345 … … 1442 1442 1443 1443 JSObject* thisObj = exec->globalThisValue(); 1444 return func->call (exec, thisObj, argList);1444 return func->callAsFunction(exec, thisObj, argList); 1445 1445 } 1446 1446 … … 1496 1496 1497 1497 JSObject* thisObj = exec->globalThisValue(); 1498 return func->call (exec, thisObj, argList);1498 return func->callAsFunction(exec, thisObj, argList); 1499 1499 } 1500 1500 … … 1634 1634 1635 1635 // No need to call toThisObject() on the thisObj as it is known not to be the GlobalObject or ActivationObject 1636 return func->call (exec, thisObj, argList);1636 return func->callAsFunction(exec, thisObj, argList); 1637 1637 } 1638 1638 … … 1691 1691 1692 1692 // No need to call toThisObject() on the thisObj as it is known not to be the GlobalObject or ActivationObject 1693 return func->call (exec, thisObj, argList);1693 return func->callAsFunction(exec, thisObj, argList); 1694 1694 } 1695 1695
Note:
See TracChangeset
for help on using the changeset viewer.