chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.debugger / GetPossibleBreakpointsRequest

GetPossibleBreakpointsRequest

data class GetPossibleBreakpointsRequest

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

Constructors

<init>

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

GetPossibleBreakpointsRequest(start: Location, end: Location? = null, restrictToFunction: Boolean? = null)

Properties

end

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

val end: Location?

restrictToFunction

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

val restrictToFunction: Boolean?

start

Start of range to search possible breakpoint locations in.

val start: Location