Sha256: 691cf80a3c928a4683798ffa77fcd7661b648d225b243ee6d68007030c7ea748

Contents?: true

Size: 629 Bytes

Versions: 3

Compression:

Stored size: 629 Bytes

Contents

require_relative 'source'
require_relative 'source_breakpoint'

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

  # The code locations of the breakpoints.
  property :breakpoints, required: false, as: many(DAP::SourceBreakpoint)

  # Deprecated: The code locations of the breakpoints.
  property :lines, required: false

  # A value of true indicates that the underlying source has been modified which results in new breakpoint locations.
  property :sourceModified, required: false
end

Version data entries

3 entries across 3 versions & 1 rubygems

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