Changeset 32652 in webkit for trunk/JavaScriptCore/kjs/number_object.cpp
- Timestamp:
- Apr 28, 2008, 11:22:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/number_object.cpp
r31948 r32652 35 35 // ------------------------------ NumberInstance ---------------------------- 36 36 37 const ClassInfo NumberInstance::info = { "Number", 0, 0 };37 const ClassInfo NumberInstance::info = { "Number", 0, 0, 0 }; 38 38 39 39 NumberInstance::NumberInstance(JSObject* proto) … … 451 451 // ------------------------------ NumberObjectImp ------------------------------ 452 452 453 const ClassInfo NumberObjectImp::info = { "Function", &InternalFunctionImp::info, &numberTable };453 const ClassInfo NumberObjectImp::info = { "Function", &InternalFunctionImp::info, 0, ExecState::numberTable }; 454 454 455 455 /* Source for number_object.lut.h … … 474 474 bool NumberObjectImp::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 475 475 { 476 return getStaticValueSlot<NumberObjectImp, InternalFunctionImp>(exec, &numberTable, this, propertyName, slot);476 return getStaticValueSlot<NumberObjectImp, InternalFunctionImp>(exec, ExecState::numberTable(exec), this, propertyName, slot); 477 477 } 478 478
Note:
See TracChangeset
for help on using the changeset viewer.