package dap
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=2c1cb97ed697a3b3c236b3d6d42332193ed9e4f169845551d3690bfa8aa1f527
sha512=9653b7e91148b0a86c41084524dc52ac25e2062d0c39965ab6a916791e9149ca0459ad1e12a71f0670e1956e5295c08356c3bb26bf99090739763f3dbe1fcbdb
doc/dap.types/Debug_protocol/Breakpoint/index.html
Module Debug_protocol.Breakpoint
Source
type t = {
id : int option;
(*An optional identifier for the breakpoint. It is needed if breakpoint events are used to update or remove breakpoints.
*)verified : bool;
(*If true breakpoint could be set (but not necessarily at the desired location).
*)message : string option;
(*An optional message about the state of the breakpoint. This is shown to the user and can be used to explain why a breakpoint could not be verified.
*)source : Source.t option;
(*The source where the breakpoint is located.
*)line : int option;
(*The start line of the actual range covered by the breakpoint.
*)column : int option;
(*An optional start column of the actual range covered by the breakpoint.
*)end_line : int option;
(*An optional end line of the actual range covered by the breakpoint.
*)end_column : int option;
(*An optional end column of the actual range covered by the breakpoint. If no end line is given, then the end column is assumed to be in the start line.
*)instruction_reference : string option;
(*An optional memory reference to where the breakpoint is set.
*)offset : int option;
(*An optional offset from the instruction reference. This can be negative.
*)
}
Information about a Breakpoint created in setBreakpoints, setFunctionBreakpoints, setInstructionBreakpoints, or setDataBreakpoints.