Changeset 65593 in webkit for trunk/JavaScriptCore/bytecompiler/NodesCodegen.cpp
- Timestamp:
- Aug 18, 2010, 1:56:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/NodesCodegen.cpp
r65468 r65593 81 81 size_t position = string.find("%s"); 82 82 ASSERT(position != notFound); 83 string = makeString(string.substr (0, position), substring, string.substr(position + 2));83 string = makeString(string.substringSharingImpl(0, position), substring, string.substringSharingImpl(position + 2)); 84 84 } 85 85
Note:
See TracChangeset
for help on using the changeset viewer.