Changeset 32652 in webkit for trunk/JavaScriptCore/kjs/string_object.cpp
- Timestamp:
- Apr 28, 2008, 11:22:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.cpp
r31746 r32652 39 39 // ------------------------------ StringInstance ---------------------------- 40 40 41 const ClassInfo StringInstance::info = { "String", 0, 0 };41 const ClassInfo StringInstance::info = { "String", 0, 0, 0 }; 42 42 43 43 StringInstance::StringInstance(JSObject *proto) … … 126 126 127 127 // ------------------------------ StringPrototype --------------------------- 128 const ClassInfo StringPrototype::info = { "String", &StringInstance::info, &stringTable };128 const ClassInfo StringPrototype::info = { "String", &StringInstance::info, 0, ExecState::stringTable }; 129 129 /* Source for string_object.lut.h 130 130 @begin stringTable 26 … … 174 174 bool StringPrototype::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot &slot) 175 175 { 176 return getStaticFunctionSlot<StringInstance>(exec, &stringTable, this, propertyName, slot);176 return getStaticFunctionSlot<StringInstance>(exec, ExecState::stringTable(exec), this, propertyName, slot); 177 177 } 178 178
Note:
See TracChangeset
for help on using the changeset viewer.