Changeset 76376 in webkit for trunk/Source/JavaScriptCore/parser/JSParser.cpp
- Timestamp:
- Jan 21, 2011, 12:01:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/JSParser.cpp
r76177 r76376 1358 1358 matchOrFail(CLOSEBRACE); 1359 1359 1360 if (newInfo) 1361 m_functionCache->add(openBracePos, newInfo.release(), newInfo->approximateByteSize()); 1360 if (newInfo) { 1361 unsigned approximateByteSize = newInfo->approximateByteSize(); 1362 m_functionCache->add(openBracePos, newInfo.release(), approximateByteSize); 1363 } 1362 1364 1363 1365 next();
Note:
See TracChangeset
for help on using the changeset viewer.