Changeset 32652 in webkit for trunk/JavaScriptCore/kjs/array_object.cpp
- Timestamp:
- Apr 28, 2008, 11:22:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.cpp
r31807 r32652 39 39 // ------------------------------ ArrayPrototype ---------------------------- 40 40 41 const ClassInfo ArrayPrototype::info = {"Array", &ArrayInstance::info, &arrayTable};41 const ClassInfo ArrayPrototype::info = {"Array", &ArrayInstance::info, 0, ExecState::arrayTable}; 42 42 43 43 /* Source for array_object.lut.h … … 73 73 bool ArrayPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 74 74 { 75 return getStaticFunctionSlot<ArrayInstance>(exec, &arrayTable, this, propertyName, slot);75 return getStaticFunctionSlot<ArrayInstance>(exec, ExecState::arrayTable(exec), this, propertyName, slot); 76 76 } 77 77
Note:
See TracChangeset
for help on using the changeset viewer.