Sha256: 09dec72a2b63dba3139af62c0376325f3d8f68840444336822a91a839d00f840

Contents?: true

Size: 423 Bytes

Versions: 3

Compression:

Stored size: 423 Bytes

Contents

class DAP::BreakpointLocation < DAP::Base
  # Start line of breakpoint location.
  property :line

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

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

  # Optional end column of breakpoint location if the location covers a range.
  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_location.rb
ruby-dap-0.1.1 lib/dap/breakpoint_location.rb
ruby-dap-0.1.0 lib/dap/breakpoint_location.rb