| Index: runtime/vm/isolate.h
|
| diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
|
| index 7d43c5705057f6932c9e6088818bbf3cb6c60705..85afa12092344e1f76e0a78b63e26ecca2056f73 100644
|
| --- a/runtime/vm/isolate.h
|
| +++ b/runtime/vm/isolate.h
|
| @@ -161,6 +161,8 @@ class Isolate : public BaseIsolate {
|
| // Visit all object pointers.
|
| void IterateObjectPointers(ObjectPointerVisitor* visitor,
|
| bool validate_frames);
|
| + void IterateStackPointers(ObjectPointerVisitor* visitor,
|
| + bool validate_frames);
|
|
|
| // Visits weak object pointers.
|
| void VisitWeakPersistentHandles(HandleVisitor* visitor);
|
| @@ -665,6 +667,7 @@ class Isolate : public BaseIsolate {
|
| // Visit all object pointers. Caller must ensure concurrent sweeper is not
|
| // running, and the visitor must not allocate.
|
| void VisitObjectPointers(ObjectPointerVisitor* visitor, bool validate_frames);
|
| + void VisitStackPointers(ObjectPointerVisitor* visitor, bool validate_frames);
|
|
|
| void set_user_tag(uword tag) { user_tag_ = tag; }
|
|
|
|
|