Changeset 35242 in webkit for trunk/JavaScriptCore/kjs/CallData.cpp
- Timestamp:
- Jul 18, 2008, 3:18:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/CallData.cpp
r35142 r35242 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);
Note:
See TracChangeset
for help on using the changeset viewer.