Changeset 32652 in webkit for trunk/JavaScriptCore/kjs/math_object.cpp
- Timestamp:
- Apr 28, 2008, 11:22:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/math_object.cpp
r31560 r32652 32 32 // ------------------------------ MathObjectImp -------------------------------- 33 33 34 const ClassInfo MathObjectImp::info = { "Math", 0, &mathTable };34 const ClassInfo MathObjectImp::info = { "Math", 0, 0, ExecState::mathTable }; 35 35 36 36 /* Source for math_object.lut.h … … 74 74 bool MathObjectImp::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot) 75 75 { 76 return getStaticPropertySlot<MathObjectImp, JSObject>(exec, &mathTable, this, propertyName, slot);76 return getStaticPropertySlot<MathObjectImp, JSObject>(exec, ExecState::mathTable(exec), this, propertyName, slot); 77 77 } 78 78
Note:
See TracChangeset
for help on using the changeset viewer.