Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make checkstyle happy
Signed-off-by: Thomas Mäder <t.s.maeder@gmail.com>
  • Loading branch information
tsmaeder committed Nov 4, 2025
commit 3c74cc49b39506c27064c554936329a4342543c1
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,24 @@ public CompletableFuture<Messages.Response> handle(Requests.Command command, Req

// Add breakpoint modes for suspend behavior
Types.BreakpointMode[] breakpointModes = {
new Types.BreakpointMode(
Constants.SUSPEND_THREAD,
"Suspend Thread",
"Suspends only the thread that hit the breakpoint",
new Types.BreakpointModeApplicability[] {
Types.BreakpointModeApplicability.SOURCE
// data and function breakpoints are not supported by VS Code
// instruction breakpoints are not supported by this adapter
}
),
new Types.BreakpointMode(
Constants.SUSPEND_THREAD,
"Suspend Thread",
"Suspends only the thread that hit the breakpoint",
new Types.BreakpointModeApplicability[] {
Types.BreakpointModeApplicability.SOURCE
// data and function breakpoints are not supported by VS Code
// instruction breakpoints are not supported by this adapter
}),
new Types.BreakpointMode(
Constants.SUSPEND_VM,
"Suspend VM",
"Suspends the entire virtual machine when breakpoint is hit",
new Types.BreakpointModeApplicability[] {
Types.BreakpointModeApplicability.SOURCE })
Constants.SUSPEND_VM,
"Suspend VM",
"Suspends the entire virtual machine when breakpoint is hit",
new Types.BreakpointModeApplicability[] {
Types.BreakpointModeApplicability.SOURCE
}
)
};
caps.breakpointModes = breakpointModes;

Expand Down
Loading