GetPossibleBreakpointsRequest

@Serializable
data class GetPossibleBreakpointsRequest(val start: Location, val end: Location? = null, val restrictToFunction: Boolean? = null)

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

Constructors

Link copied to clipboard
constructor(start: Location, end: Location? = null, restrictToFunction: Boolean? = null)

Types

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

A builder for GetPossibleBreakpointsRequest, which allows setting the optional parameters of the DebuggerDomain.getPossibleBreakpoints command via a lambda.

Properties

Link copied to clipboard
val end: Location? = null

End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.

Link copied to clipboard

Only consider locations which are in the same (non-nested) function as start.

Link copied to clipboard

Start of range to search possible breakpoint locations in.