From 41fc847eeef8cc72497c196cbde5a82d32320366 Mon Sep 17 00:00:00 2001 From: ZhenyuPan Date: Fri, 21 Oct 2022 10:03:57 +0800 Subject: [PATCH] Modify breakpoint paused reason Issue:https://gitee.com/openharmony/arkcompiler_toolchain/issues/I5WVZC Signed-off-by: ZhenyuPan Change-Id: I46eb5ee061ad10490812237b3dd21a62e0677e81 --- tooling/backend/js_pt_hooks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/backend/js_pt_hooks.cpp b/tooling/backend/js_pt_hooks.cpp index 1e7ae288..2396a8fd 100644 --- a/tooling/backend/js_pt_hooks.cpp +++ b/tooling/backend/js_pt_hooks.cpp @@ -24,7 +24,7 @@ void JSPtHooks::Breakpoint(const JSPtLocation &location) << location.GetBytecodeOffset(); [[maybe_unused]] LocalScope scope(debugger_->vm_); - debugger_->NotifyPaused(location, INSTRUMENTATION); + debugger_->NotifyPaused(location, OTHER); } void JSPtHooks::Exception([[maybe_unused]] const JSPtLocation &location) -- Gitee