| Index: src/frames.h
|
| diff --git a/src/frames.h b/src/frames.h
|
| index a8fd43e5bac76b97d8ff9203378666f4d6418999..a51afbb8e5e8fef9012cfc2d772e37d50f139474 100644
|
| --- a/src/frames.h
|
| +++ b/src/frames.h
|
| @@ -897,8 +897,8 @@
|
| // Determine the code for the frame.
|
| Code* unchecked_code() const override;
|
|
|
| - // Return a list with {SharedFunctionInfo} objects of this frame.
|
| - virtual void GetFunctions(List<SharedFunctionInfo*>* functions) const;
|
| + // Return a list with JSFunctions of this frame.
|
| + virtual void GetFunctions(List<JSFunction*>* functions) const;
|
|
|
| // Lookup exception handler for current {pc}, returns -1 if none found. Also
|
| // returns data associated with the handler site specific to the frame type:
|
| @@ -977,10 +977,10 @@
|
| // GC support.
|
| void Iterate(ObjectVisitor* v) const override;
|
|
|
| - // Return a list with {SharedFunctionInfo} objects of this frame.
|
| + // Return a list with JSFunctions of this frame.
|
| // The functions are ordered bottom-to-top (i.e. functions.last()
|
| // is the top-most activation)
|
| - void GetFunctions(List<SharedFunctionInfo*>* functions) const override;
|
| + void GetFunctions(List<JSFunction*>* functions) const override;
|
|
|
| void Summarize(
|
| List<FrameSummary>* frames,
|
|
|