Sha256: 7e932c41843e00ca315ece7a7acbd711d992bf4711408fa2930705c7b73734d2

Contents?: true

Size: 718 Bytes

Versions: 1

Compression:

Stored size: 718 Bytes

Contents

require_relative 'data_breakpoint_access_type'

# Properties of a data breakpoint passed to the setDataBreakpoints request.
class DAP::DataBreakpoint < DAP::Base
  # An id representing the data. This id is returned from the dataBreakpointInfo request.
  property :dataId, as: 'string'

  # The access type of the data.
  property :accessType, required: false, as: DAP::DataBreakpointAccessType

  # An optional expression for conditional breakpoints.
  property :condition, required: false, as: 'string'

  # An optional expression that controls how many hits of the breakpoint are ignored.
  # The backend is expected to interpret the expression as needed.
  property :hitCondition, required: false, as: 'string'
end

Version data entries

1 entries across 1 versions & 1 rubygems

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