Changeset 404 for trunk/JavaScriptCore/kjs/CallData.cpp
- Timestamp:
- 07/21/08 12:33:30 (2 years ago)
- Files:
-
- trunk/JavaScriptCore/kjs/CallData.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/CallData.cpp
r394 r404 33 33 JSValue* call(ExecState* exec, JSValue* functionObject, CallType callType, const CallData& callData, JSValue* thisValue, const ArgList& args) 34 34 { 35 if (callType == CallType Native)35 if (callType == CallTypeHost) 36 36 return callData.native.function(exec, static_cast<JSObject*>(functionObject), thisValue, args); 37 37 ASSERT(callType == CallTypeJS);
