pl.wendigo.chrome.api.debugger / GetPossibleBreakpointsRequest

GetPossibleBreakpointsRequest

data class GetPossibleBreakpointsRequest (source)

Represents request frame that can be used with Debugger#getPossibleBreakpoints operation call.

Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

Link
Debugger#getPossibleBreakpoints method documentation.

See Also

DebuggerOperations.getPossibleBreakpoints

Constructors

<init>

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

Represents request frame that can be used with Debugger#getPossibleBreakpoints operation call.

Properties

end

val end: Location?

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

restrictToFunction

val restrictToFunction: Boolean?

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

start

val start: Location

Start of range to search possible breakpoint locations in.