Changeset 88324 in webkit for trunk/Source/JavaScriptCore/heap/HandleStack.cpp
- Timestamp:
- Jun 7, 2011, 9:57:08 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/HandleStack.cpp
r87230 r88324 39 39 } 40 40 41 void HandleStack:: mark(HeapRootVisitor& heapRootMarker)41 void HandleStack::visit(HeapRootVisitor& heapRootVisitor) 42 42 { 43 43 const Vector<HandleSlot>& blocks = m_blockStack.blocks(); … … 47 47 for (int i = 0; i < end; ++i) { 48 48 HandleSlot block = blocks[i]; 49 heapRoot Marker.mark(block, blockLength);49 heapRootVisitor.visit(block, blockLength); 50 50 } 51 51 HandleSlot block = blocks[end]; 52 heapRoot Marker.mark(block, m_frame.m_next - block);52 heapRootVisitor.visit(block, m_frame.m_next - block); 53 53 } 54 54
Note:
See TracChangeset
for help on using the changeset viewer.