Sha256: 6f9042cab40afa882c491fcc38ad44359723e29989928f1e8fbbba30b83447f5

Contents?: true

Size: 572 Bytes

Versions: 1

Compression:

Stored size: 572 Bytes

Contents

# Properties of a breakpoint location returned from the ‘breakpointLocations’
# request.
class DAP::BreakpointLocation < DAP::Base
  # Start line of breakpoint location.
  property :line, as: 'number'

  # Optional start column of breakpoint location.
  property :column, required: false, as: 'number'

  # Optional end line of breakpoint location if the location covers a range.
  property :endLine, required: false, as: 'number'

  # Optional end column of breakpoint location if the location covers a range.
  property :endColumn, required: false, as: 'number'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-dap-0.1.3 lib/dap/breakpoint_location.rb