Index: runtime/lib/stacktrace.cc |
diff --git a/runtime/lib/stacktrace.cc b/runtime/lib/stacktrace.cc |
index 7b793141f2c5f0de3c120a6b3abc85ea48bbb399..9d9a3075d0df62820dc5eee8fb3c2336c647c738 100644 |
--- a/runtime/lib/stacktrace.cc |
+++ b/runtime/lib/stacktrace.cc |
@@ -2,6 +2,7 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+#include "lib/stacktrace.h" |
#include "vm/bootstrap_natives.h" |
#include "vm/exceptions.h" |
#include "vm/object_store.h" |
@@ -36,7 +37,7 @@ static void IterateFrames(const GrowableObjectArray& code_list, |
// Creates a Stacktrace object from the current stack. |
// |
// Skips the first skip_frames Dart frames. |
-static const Stacktrace& GetCurrentStacktrace(int skip_frames) { |
+const Stacktrace& GetCurrentStacktrace(int skip_frames) { |
const GrowableObjectArray& code_list = |
GrowableObjectArray::Handle(GrowableObjectArray::New()); |
const GrowableObjectArray& pc_offset_list = |