Index: src/frames.h |
diff --git a/src/frames.h b/src/frames.h |
index 1cb1d190fd2abfd0f88309cde28a2aa26618f912..33747a615aa70146c5c3471dff7b5a2647670997 100644 |
--- a/src/frames.h |
+++ b/src/frames.h |
@@ -278,6 +278,9 @@ class StackFrame BASE_EMBEDDED { |
// Checks if this frame includes any stack handlers. |
bool HasHandler() const; |
+ // Get the top handler from the current stack iterator. |
+ inline StackHandler* top_handler() const; |
+ |
// Get the type of this frame. |
virtual Type type() const = 0; |
@@ -311,7 +314,6 @@ class StackFrame BASE_EMBEDDED { |
// Resolves pc_address through the resolution address function if one is set. |
static inline Address* ResolveReturnAddressLocation(Address* pc_address); |
- |
// Printing support. |
enum PrintMode { OVERVIEW, DETAILS }; |
virtual void Print(StringStream* accumulator, |
@@ -332,9 +334,6 @@ class StackFrame BASE_EMBEDDED { |
PrintMode mode, |
int index); |
- // Get the top handler from the current stack iterator. |
- inline StackHandler* top_handler() const; |
- |
// Compute the stack frame type for the given state. |
static Type ComputeType(const StackFrameIteratorBase* iterator, State* state); |