Changeset 33979 in webkit for trunk/JavaScriptCore/kjs/value.cpp


Ignore:
Timestamp:
May 21, 2008, 6:20:45 PM (17 years ago)
Author:
[email protected]
Message:

Merge squirrelfish branch into trunk.

File:
1 edited

Legend:

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

    r33038 r33979  
    208208}
    209209
     210CallType JSCell::getCallData(CallData&)
     211{
     212    return CallTypeNone;
     213}
     214
     215ConstructType JSCell::getConstructData(ConstructData&)
     216{
     217    return ConstructTypeNone;
     218}
     219
    210220JSCell* jsString(const char* s)
    211221{
     
    223233}
    224234
    225 // This method includes a PIC branch to set up the NumberImp's vtable, so we quarantine
    226 // it in a separate function to keep the normal case speedy.
    227 JSValue *jsNumberCell(double d)
    228 {
    229     return new NumberImp(d);
    230 }
    231 
    232235} // namespace KJS
Note: See TracChangeset for help on using the changeset viewer.