Changeset 35807 in webkit for trunk/JavaScriptCore/API/JSCallbackFunction.cpp
- Timestamp:
- Aug 17, 2008, 1:23:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackFunction.cpp
r35478 r35807 37 37 namespace KJS { 38 38 39 ASSERT_CLASS_FITS_IN_CELL(JSCallbackFunction); 40 39 41 const ClassInfo JSCallbackFunction::info = { "CallbackFunction", &InternalFunction::info, 0, 0 }; 40 42 41 43 JSCallbackFunction::JSCallbackFunction(ExecState* exec, JSObjectCallAsFunctionCallback callback, const Identifier& name) 42 : InternalFunction(exec ->lexicalGlobalObject()->functionPrototype(), name)44 : InternalFunction(exec, exec->lexicalGlobalObject()->functionPrototype(), name) 43 45 , m_callback(callback) 44 46 {
Note:
See TracChangeset
for help on using the changeset viewer.