Changeset 54789 in webkit for trunk/JavaScriptCore/bytecode
- Timestamp:
- Feb 15, 2010, 1:03:45 PM (15 years ago)
- Location:
- trunk/JavaScriptCore/bytecode
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.cpp
r52028 r54789 50 50 { 51 51 UString result = str; 52 intpos = 0;53 while ((pos = result.find('\"', pos)) >= 0) {52 unsigned pos = 0; 53 while ((pos = result.find('\"', pos)) != UString::NotFound) { 54 54 result = makeString(result.substr(0, pos), "\"\\\"\"", result.substr(pos + 1)); 55 55 pos += 4; -
trunk/JavaScriptCore/bytecode/EvalCodeCache.h
r48662 r54789 66 66 67 67 private: 68 static const intmaxCacheableSourceLength = 256;68 static const unsigned maxCacheableSourceLength = 256; 69 69 static const int maxCacheEntries = 64; 70 70
Note:
See TracChangeset
for help on using the changeset viewer.