summaryrefslogtreecommitdiff
path: root/deps/v8/src/debug/debug-stack-trace-iterator.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/debug/debug-stack-trace-iterator.h')
-rw-r--r--deps/v8/src/debug/debug-stack-trace-iterator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/src/debug/debug-stack-trace-iterator.h b/deps/v8/src/debug/debug-stack-trace-iterator.h
index 8bddcf9a10..dd2d743caf 100644
--- a/deps/v8/src/debug/debug-stack-trace-iterator.h
+++ b/deps/v8/src/debug/debug-stack-trace-iterator.h
@@ -28,6 +28,7 @@ class DebugStackTraceIterator final : public debug::StackTraceIterator {
v8::Local<v8::String> GetFunctionDebugName() const override;
v8::Local<v8::debug::Script> GetScript() const override;
debug::Location GetSourceLocation() const override;
+ debug::Location GetFunctionLocation() const override;
v8::Local<v8::Function> GetFunction() const override;
std::unique_ptr<v8::debug::ScopeIterator> GetScopeIterator() const override;
bool CanBeRestarted() const override;
@@ -42,7 +43,7 @@ class DebugStackTraceIterator final : public debug::StackTraceIterator {
void UpdateInlineFrameIndexAndResumableFnOnStack();
Isolate* isolate_;
- StackTraceFrameIterator iterator_;
+ DebuggableStackFrameIterator iterator_;
std::unique_ptr<FrameInspector> frame_inspector_;
int inlined_frame_index_;
bool is_top_frame_;