Index: runtime/vm/debugger.h |
diff --git a/runtime/vm/debugger.h b/runtime/vm/debugger.h |
index 8586626aa054bb0119054923c73b2fd7a6871e75..4f271842bea922575150e0eb6260da56e6fe9cb6 100644 |
--- a/runtime/vm/debugger.h |
+++ b/runtime/vm/debugger.h |
@@ -217,27 +217,19 @@ class ActivationFrame : public ZoneAllocated { |
class DebuggerStackTrace : public ZoneAllocated { |
public: |
explicit DebuggerStackTrace(int capacity) |
- : trace_(capacity), |
- user_trace_(capacity) { } |
+ : trace_(capacity) { } |
- intptr_t Length() const { return user_trace_.length(); } |
+ intptr_t Length() const { return trace_.length(); } |
ActivationFrame* FrameAt(int i) const { |
- return user_trace_[i]; |
+ return trace_[i]; |
} |
ActivationFrame* GetHandlerFrame(const Instance& exc_obj) const; |
private: |
- intptr_t UnfilteredLength() const { return trace_.length(); } |
- |
- ActivationFrame* UnfilteredFrameAt(int i) const { |
- return trace_[i]; |
- } |
- |
void AddActivation(ActivationFrame* frame); |
ZoneGrowableArray<ActivationFrame*> trace_; |
- ZoneGrowableArray<ActivationFrame*> user_trace_; |
friend class Debugger; |
DISALLOW_COPY_AND_ASSIGN(DebuggerStackTrace); |