Changeset 33374 in webkit for trunk/JavaScriptCore/API/JSClassRef.cpp
- Timestamp:
- May 13, 2008, 2:46:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSClassRef.cpp
r33038 r33374 40 40 41 41 OpaqueJSClass::OpaqueJSClass(const JSClassDefinition* definition, OpaqueJSClass* protoClass) 42 // FIXME: <rdar://problem/4949018> 43 : className(definition->className) 42 : className(UString::Rep::createFromUTF8(definition->className)) 44 43 , parentClass(definition->parentClass) 45 44 , prototypeClass(0) … … 62 61 staticValues = new StaticValuesTable(); 63 62 while (staticValue->name) { 64 // FIXME: <rdar://problem/4949018> 65 staticValues->add(Identifier(staticValue->name).ustring().rep(), 63 staticValues->add(Identifier(UString::Rep::createFromUTF8(staticValue->name).get()).ustring().rep(), 66 64 new StaticValueEntry(staticValue->getProperty, staticValue->setProperty, staticValue->attributes)); 67 65 ++staticValue; … … 72 70 staticFunctions = new StaticFunctionsTable(); 73 71 while (staticFunction->name) { 74 // FIXME: <rdar://problem/4949018> 75 staticFunctions->add(Identifier(staticFunction->name).ustring().rep(), 72 staticFunctions->add(Identifier(UString::Rep::createFromUTF8(staticFunction->name).get()).ustring().rep(), 76 73 new StaticFunctionEntry(staticFunction->callAsFunction, staticFunction->attributes)); 77 74 ++staticFunction;
Note:
See TracChangeset
for help on using the changeset viewer.