Ignore:
Timestamp:
Jul 18, 2008, 3:18:21 PM (17 years ago)
Author:
[email protected]
Message:

JavaScriptCore:

2008-07-18 Geoffrey Garen <[email protected]>

Reviewed by Cameron Zwarich.


Three renames:


"CallTypeNative" => "CallTypeHost"
"code" => "byteCode"
"generatedCode" => "generatedByteCode"

JavaScriptGlue:

2008-07-18 Geoffrey Garen <[email protected]>

Reviewed by Cameron Zwarich.


Three renames:


"CallTypeNative" => "CallTypeHost"
"code" => "byteCode"
"generatedCode" => "generatedByteCode"

  • ChangeLog:
  • JSObject.cpp: (JSUserObject::getCallData):

WebCore:

2008-07-18 Geoffrey Garen <[email protected]>

Reviewed by Cameron Zwarich.


Three renames:


"CallTypeNative" => "CallTypeHost"
"code" => "byteCode"
"generatedCode" => "generatedByteCode"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/CallData.cpp

    r35142 r35242  
    3333JSValue* call(ExecState* exec, JSValue* functionObject, CallType callType, const CallData& callData, JSValue* thisValue, const ArgList& args)
    3434{
    35     if (callType == CallTypeNative)
     35    if (callType == CallTypeHost)
    3636        return callData.native.function(exec, static_cast<JSObject*>(functionObject), thisValue, args);
    3737    ASSERT(callType == CallTypeJS);
Note: See TracChangeset for help on using the changeset viewer.