Changeset 65593 in webkit for trunk/JavaScriptCore/bytecode
- Timestamp:
- Aug 18, 2010, 1:56:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r65468 r65593 53 53 size_t pos = 0; 54 54 while ((pos = result.find('\"', pos)) != notFound) { 55 result = makeString(result.substr (0, pos), "\"\\\"\"", result.substr(pos + 1));55 result = makeString(result.substringSharingImpl(0, pos), "\"\\\"\"", result.substringSharingImpl(pos + 1)); 56 56 pos += 4; 57 57 }
Note:
See TracChangeset
for help on using the changeset viewer.