Changeset 54701 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Feb 11, 2010, 9:01:07 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r54672 r54701 1123 1123 if (m_globalData->exception) 1124 1124 markStack.append(m_globalData->exception); 1125 m_globalData->smallStrings.markChildren(markStack);1126 1125 if (m_globalData->functionCodeBlockBeingReparsed) 1127 1126 m_globalData->functionCodeBlockBeingReparsed->markAggregate(markStack); 1128 1127 if (m_globalData->firstStringifierToMark) 1129 1128 JSONObject::markStringifiers(markStack, m_globalData->firstStringifierToMark); 1129 1130 // Mark the small strings cache last, since it will clear itself if nothing 1131 // else has marked it. 1132 m_globalData->smallStrings.markChildren(markStack); 1130 1133 1131 1134 markStack.drain();
Note:
See TracChangeset
for help on using the changeset viewer.