| Index: runtime/vm/heap.h
|
| ===================================================================
|
| --- runtime/vm/heap.h (revision 9135)
|
| +++ runtime/vm/heap.h (working copy)
|
| @@ -84,8 +84,12 @@
|
| void IterateNewPointers(ObjectPointerVisitor* visitor);
|
| void IterateOldPointers(ObjectPointerVisitor* visitor);
|
| void IterateCodePointers(ObjectPointerVisitor* visitor);
|
| - void IterateStubCodePointers(ObjectPointerVisitor* visitor);
|
|
|
| + // Visit all object in the space.
|
| + void IterateNewObjects(ObjectVisitor* visitor);
|
| + void IterateOldObjects(ObjectVisitor* visitor);
|
| + void IterateCodeObjects(ObjectVisitor* visitor);
|
| +
|
| // Find an object by visiting all pointers in the specified heap space,
|
| // the 'visitor' is used to determine if an object is found or not.
|
| // The 'visitor' function should be set up to return true if the
|
|
|