SetBreakpointRequest

@Serializable
data class SetBreakpointRequest(val location: Location, val condition: String? = null)(source)

Request object containing input parameters for the DebuggerDomain.setBreakpoint command.

Constructors

Link copied to clipboard
constructor(location: Location, condition: String? = null)

Types

Link copied to clipboard
class Builder(val location: Location)

Properties

Link copied to clipboard
val condition: String? = null

Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.

Link copied to clipboard

Location to set breakpoint in.