Changeset 34334 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp


Ignore:
Timestamp:
Jun 2, 2008, 11:26:54 PM (17 years ago)
Author:
[email protected]
Message:

JavaScriptCore:

2008-06-02 Geoffrey Garen <[email protected]>

Reviewed by Alexey Proskuryakov.

Removed JSObject::call, since it just called JSObject::callAsFunction.

SunSpider reports no change.

JavaScriptGlue:

2008-06-02 Geoffrey Garen <[email protected]>

Reviewed by Alexey Proskuryakov.

Removed JSObject::call, since it just called JSObject::callAsFunction.

SunSpider reports no change.

WebCore:

2008-06-02 Geoffrey Garen <[email protected]>

Reviewed by Alexey Proskuryakov.


Removed JSObject::call, since it just called JSObject::callAsFunction.


SunSpider reports no change.

File:
1 edited

Legend:

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

    r34319 r34334  
    12821282
    12831283            JSObject* thisObj = base->toThisObject(exec);
    1284             return func->call(exec, thisObj, argList);
     1284            return func->callAsFunction(exec, thisObj, argList);
    12851285        }
    12861286        ++iter;
     
    13411341
    13421342    JSObject* thisObj = exec->globalThisValue();
    1343     return func->call(exec, thisObj, argList);
     1343    return func->callAsFunction(exec, thisObj, argList);
    13441344}
    13451345
     
    14421442
    14431443    JSObject* thisObj = exec->globalThisValue();
    1444     return func->call(exec, thisObj, argList);
     1444    return func->callAsFunction(exec, thisObj, argList);
    14451445}
    14461446
     
    14961496
    14971497    JSObject* thisObj = exec->globalThisValue();
    1498     return func->call(exec, thisObj, argList);
     1498    return func->callAsFunction(exec, thisObj, argList);
    14991499}
    15001500
     
    16341634
    16351635    // No need to call toThisObject() on the thisObj as it is known not to be the GlobalObject or ActivationObject
    1636     return func->call(exec, thisObj, argList);
     1636    return func->callAsFunction(exec, thisObj, argList);
    16371637}
    16381638
     
    16911691
    16921692    // No need to call toThisObject() on the thisObj as it is known not to be the GlobalObject or ActivationObject
    1693     return func->call(exec, thisObj, argList);
     1693    return func->callAsFunction(exec, thisObj, argList);
    16941694}
    16951695
Note: See TracChangeset for help on using the changeset viewer.