Changeset 19059 in webkit for trunk/JavaScriptCore/API/JSClassRef.cpp
- Timestamp:
- Jan 23, 2007, 2:23:09 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSClassRef.cpp
r17649 r19059 38 38 OpaqueJSClass::OpaqueJSClass(const JSClassDefinition* definition, OpaqueJSClass* protoClass) 39 39 : refCount(0) 40 // FIXME: <rdar://problem/4949018> 40 41 , className(definition->className) 41 42 , parentClass(definition->parentClass) … … 59 60 staticValues = new StaticValuesTable(); 60 61 while (staticValue->name) { 62 // FIXME: <rdar://problem/4949018> 61 63 staticValues->add(Identifier(staticValue->name).ustring().rep(), 62 64 new StaticValueEntry(staticValue->getProperty, staticValue->setProperty, staticValue->attributes)); … … 68 70 staticFunctions = new StaticFunctionsTable(); 69 71 while (staticFunction->name) { 72 // FIXME: <rdar://problem/4949018> 70 73 staticFunctions->add(Identifier(staticFunction->name).ustring().rep(), 71 74 new StaticFunctionEntry(staticFunction->callAsFunction, staticFunction->attributes));
Note:
See TracChangeset
for help on using the changeset viewer.