From 589c5bb52c8a257129024f041cb20253548d0933 Mon Sep 17 00:00:00 2001 From: fangting Date: Wed, 18 Jun 2025 10:30:46 +0800 Subject: [PATCH] fix scopechain empty Issue:#ICFYR6 Signed-off-by: fangting --- tooling/agent/debugger_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/agent/debugger_impl.cpp b/tooling/agent/debugger_impl.cpp index 78e43910..2ddcbd11 100755 --- a/tooling/agent/debugger_impl.cpp +++ b/tooling/agent/debugger_impl.cpp @@ -490,7 +490,7 @@ std::string DebuggerImpl::DispatcherImpl::GetJsFrames() tooling::MixedStack mixedStack; mixedStack.SetNativePointers(nativePointers); std::vector> callFrames; - if (debugger_->GenerateCallFrames(&callFrames, false)) { + if (debugger_->GenerateCallFrames(&callFrames, true)) { mixedStack.SetCallFrames(std::move(callFrames)); } return mixedStack.ToJson()->Stringify(); -- Gitee