mirror of
https://gitee.com/openharmony/arkcompiler_toolchain
synced 2024-11-23 15:40:03 +00:00
Implement debugger stmt behavior followup3
Fix codecheck warning of line length Test: Build & Boot devices & Debug Signed-off-by: huangtianzhi <huangtianzhi1@huawei.com>
This commit is contained in:
parent
ab277de0d3
commit
ffdbf3320e
@ -249,7 +249,9 @@ void DebuggerImpl::NotifyPaused(std::optional<JSPtLocation> location, PauseReaso
|
||||
if (reason == DEBUGGERSTMT) {
|
||||
BreakpointDetails detail;
|
||||
hitBreakpoints.emplace_back(BreakpointDetails::ToString(detail));
|
||||
paused.SetCallFrames(std::move(callFrames)).SetReason(PauseReason::OTHER).SetHitBreakpoints(std::move(hitBreakpoints));
|
||||
paused.SetCallFrames(std::move(callFrames))
|
||||
.SetReason(PauseReason::OTHER)
|
||||
.SetHitBreakpoints(std::move(hitBreakpoints));
|
||||
} else {
|
||||
paused.SetCallFrames(std::move(callFrames)).SetReason(reason).SetHitBreakpoints(std::move(hitBreakpoints));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user