Changeset 55833 in webkit for trunk/JavaScriptCore/API
- Timestamp:
- Mar 10, 2010, 11:19:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSClassRef.cpp
r54843 r55833 172 172 // Use a local variable here to sidestep an RVCT compiler bug. 173 173 StaticValueEntry* entry = new StaticValueEntry(it->second->getProperty, it->second->setProperty, it->second->attributes); 174 staticValues->add(UString::Rep::create(it->first-> data(), it->first->length()), entry);174 staticValues->add(UString::Rep::create(it->first->characters(), it->first->length()), entry); 175 175 } 176 176 } else … … 184 184 // Use a local variable here to sidestep an RVCT compiler bug. 185 185 StaticFunctionEntry* entry = new StaticFunctionEntry(it->second->callAsFunction, it->second->attributes); 186 staticFunctions->add(UString::Rep::create(it->first-> data(), it->first->length()), entry);186 staticFunctions->add(UString::Rep::create(it->first->characters(), it->first->length()), entry); 187 187 } 188 188
Note:
See TracChangeset
for help on using the changeset viewer.