GetPossibleBreakpointsParameter

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

Constructors

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

Properties

Link copied to clipboard
val end: Debugger.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.