Changeset 25085 in webkit for trunk/JavaScriptCore/API/JSCallbackObject.cpp
- Timestamp:
- Aug 14, 2007, 6:07:06 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObject.cpp
r21841 r25085 238 238 arguments[i] = toRef(args[i]); 239 239 JSLock::DropAllLocks dropAllLocks; 240 return toJS(callAsConstructor(execRef, thisRef, argumentCount, arguments , toRef(exec->exceptionSlot())));240 return toJS(callAsConstructor(execRef, thisRef, argumentCount, arguments.data(), toRef(exec->exceptionSlot()))); 241 241 } 242 242 } … … 293 293 arguments[i] = toRef(args[i]); 294 294 JSLock::DropAllLocks dropAllLocks; 295 return toJS(callAsFunction(execRef, thisRef, thisObjRef, argumentCount, arguments , toRef(exec->exceptionSlot())));295 return toJS(callAsFunction(execRef, thisRef, thisObjRef, argumentCount, arguments.data(), toRef(exec->exceptionSlot()))); 296 296 } 297 297 }
Note:
See TracChangeset
for help on using the changeset viewer.