Changeset 34947 in webkit for trunk/JavaScriptCore/API/JSCallbackConstructor.cpp
- Timestamp:
- Jul 2, 2008, 12:00:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackConstructor.cpp
r34854 r34947 30 30 #include "APICast.h" 31 31 #include <kjs/JSGlobalObject.h> 32 #include <kjs/JSLock.h> 32 33 #include <kjs/ObjectPrototype.h> 33 34 #include <wtf/Vector.h> … … 69 70 arguments[i] = toRef(args[i]); 70 71 71 JSLock::DropAllLocks dropAllLocks ;72 JSLock::DropAllLocks dropAllLocks(exec); 72 73 return toJS(callback(ctx, constructorRef, argumentCount, arguments.data(), toRef(exec->exceptionSlot()))); 73 74 }
Note:
See TracChangeset
for help on using the changeset viewer.