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/function_object.cpp

    r34273 r34334  
    105105    }
    106106
    107     return thisObj->call(exec, applyThis, applyArgs);
     107    return thisObj->callAsFunction(exec, applyThis, applyArgs);
    108108}
    109109
     
    123123    List argsTail;
    124124    args.getSlice(1, argsTail);
    125     return thisObj->call(exec, callThis, argsTail);
     125    return thisObj->callAsFunction(exec, callThis, argsTail);
    126126}
    127127
Note: See TracChangeset for help on using the changeset viewer.