Changeset 43037 in webkit for trunk/JavaScriptCore/runtime/StringConstructor.cpp
- Timestamp:
- Apr 29, 2009, 6:21:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/StringConstructor.cpp
r42989 r43037 34 34 ArgList::const_iterator end = args.end(); 35 35 for (ArgList::const_iterator it = args.begin(); it != end; ++it) 36 *p++ = static_cast<UChar>((*it). jsValue().toUInt32(exec));36 *p++ = static_cast<UChar>((*it).toUInt32(exec)); 37 37 return jsString(exec, UString(buf, p - buf, false)); 38 38 }
Note:
See TracChangeset
for help on using the changeset viewer.