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