data class GetPossibleBreakpointsRequest
Request object containing input parameters for the DebuggerDomain.getPossibleBreakpoints command.
<init> |
Request object containing input parameters for the DebuggerDomain.getPossibleBreakpoints command. GetPossibleBreakpointsRequest(start: Location, end: Location? = null, restrictToFunction: Boolean? = null) |
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 |