Add removing of breakpoints

This commit is contained in:
2026-03-29 17:53:34 +02:00
parent 436a49b1b3
commit bb829286d1
4 changed files with 49 additions and 11 deletions

View File

@@ -11,6 +11,7 @@ type CommandType string
const (
ContinueCommand CommandType = "continue"
BreakCommand CommandType = "break"
UnbreakCommand CommandType = "unbreak"
LocalsCommand CommandType = "locals"
StepCommand CommandType = "step"
)