Changeset 33979 in webkit for trunk/JavaScriptCore/kjs/value.cpp
- Timestamp:
- May 21, 2008, 6:20:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/value.cpp
r33038 r33979 208 208 } 209 209 210 CallType JSCell::getCallData(CallData&) 211 { 212 return CallTypeNone; 213 } 214 215 ConstructType JSCell::getConstructData(ConstructData&) 216 { 217 return ConstructTypeNone; 218 } 219 210 220 JSCell* jsString(const char* s) 211 221 { … … 223 233 } 224 234 225 // This method includes a PIC branch to set up the NumberImp's vtable, so we quarantine226 // it in a separate function to keep the normal case speedy.227 JSValue *jsNumberCell(double d)228 {229 return new NumberImp(d);230 }231 232 235 } // namespace KJS
Note:
See TracChangeset
for help on using the changeset viewer.