Changeset 65099 in webkit for trunk/JavaScriptCore/runtime/StringConstructor.cpp
- Timestamp:
- Aug 10, 2010, 3:32:19 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/StringConstructor.cpp
r60708 r65099 35 35 unsigned length = exec->argumentCount(); 36 36 UChar* buf; 37 PassRefPtr< UStringImpl> impl = UStringImpl::createUninitialized(length, buf);37 PassRefPtr<StringImpl> impl = StringImpl::createUninitialized(length, buf); 38 38 for (unsigned i = 0; i < length; ++i) 39 39 buf[i] = static_cast<UChar>(exec->argument(i).toUInt32(exec));
Note:
See TracChangeset
for help on using the changeset viewer.