Sha256: 474da0368ea18b6d4cd8dde80476dff13d2076aa73e406fbc742b1b331aadf02

Contents?: true

Size: 985 Bytes

Versions: 3

Compression:

Stored size: 985 Bytes

Contents

require_relative 'source'

class DAP::BreakpointLocationsArguments < DAP::Base
  # The source location of the breakpoints; either 'source.path' or 'source.reference' must be specified.
  property :source, as: DAP::Source

  # 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.
  property :line

  # 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.
  property :column, required: false

  # 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.
  property :endLine, required: false

  # 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.
  property :endColumn, required: false
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-dap-0.1.2 lib/dap/breakpoint_locations_arguments.rb
ruby-dap-0.1.1 lib/dap/breakpoint_locations_arguments.rb
ruby-dap-0.1.0 lib/dap/breakpoint_locations_arguments.rb