Ignore:
Timestamp:
Jul 28, 2008, 1:04:48 PM (17 years ago)
Author:
[email protected]
Message:

JavaScriptCore:

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

Reviewed by Sam Weinig.

Renamed "ConstructTypeNative" => "ConstructTypeHost".

WebCore:

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

Reviewed by Sam Weinig.

Renamed "ConstructTypeNative" => "ConstructTypeHost".

File:
1 edited

Legend:

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

    r35142 r35411  
    3333JSObject* construct(ExecState* exec, JSValue* object, ConstructType constructType, const ConstructData& constructData, const ArgList& args)
    3434{
    35     if (constructType == ConstructTypeNative)
     35    if (constructType == ConstructTypeHost)
    3636        return constructData.native.function(exec, static_cast<JSObject*>(object), args);
    3737    ASSERT(constructType == ConstructTypeJS);
Note: See TracChangeset for help on using the changeset viewer.