typedef BreakpointLocationsArguments
package vscode.debugProtocol
import vscode.debugProtocol.DebugProtocol
Arguments for 'breakpointLocations' request.
Fields
source:Source
The source location of the breakpoints; either 'source.path' or 'source.reference' must be specified.
line:Int
Start line of range to search possible breakpoint locations in. If only the line is specified, the request returns all possible locations in that line.
optionalendLine:Null<Int>
Optional end line of range to search possible breakpoint locations in. If no end line is given, then the end line is assumed to be the start line.
optionalendColumn:Null<Int>
Optional end column of range to search possible breakpoint locations in. If no end column is given, then it is assumed to be in the last column of the end line.
optionalcolumn:Null<Int>
Optional start column of range to search possible breakpoint locations in. If no start column is given, the first column in the start line is assumed.