Changeset 35853 in webkit for trunk/JavaScriptCore/API/JSCallbackFunction.cpp
- Timestamp:
- Aug 20, 2008, 12:23:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackFunction.cpp
r35807 r35853 33 33 #include "FunctionPrototype.h" 34 34 #include <kjs/JSGlobalObject.h> 35 #include <kjs/JSLock.h> 35 36 #include <wtf/Vector.h> 36 37 … … 65 66 arguments[i] = toRef(args.at(exec, i)); 66 67 68 JSLock::DropAllLocks dropAllLocks(exec); 67 69 return toJS(static_cast<JSCallbackFunction*>(functionObject)->m_callback(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), toRef(exec->exceptionSlot()))); 68 70 }
Note:
See TracChangeset
for help on using the changeset viewer.