Sha256: 91405b43390c03ba26eab0abfb05774a17263c9337d66e960a58d2f2a5d09be8

Contents?: true

Size: 857 Bytes

Versions: 1

Compression:

Stored size: 857 Bytes

Contents

require_relative 'data_breakpoint_access_type'

# Response to ‘dataBreakpointInfo’ request.
class DAP::DataBreakpointInfoResponseBody < DAP::Base
  # An identifier for the data on which a data breakpoint can be registered with the setDataBreakpoints request or null if no data breakpoint is available.
  property :dataId

  # UI string that describes on what data the breakpoint is set on or why a data breakpoint is not available.
  property :description, as: 'string'

  # Optional attribute listing the available access types for a potential data breakpoint. A UI frontend could surface this information.
  property :accessTypes, required: false, as: many(DAP::DataBreakpointAccessType)

  # Optional attribute indicating that a potential data breakpoint could be persisted across sessions.
  property :canPersist, required: false, as: 'boolean'
end

Version data entries

1 entries across 1 versions & 1 rubygems

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