Sha256: 63dd85d8440544e931ce2a0c5ea6e90335bdb78218ab8ad3126185758619a733
Contents?: true
Size: 780 Bytes
Versions: 3
Compression:
Stored size: 780 Bytes
Contents
require_relative 'data_breakpoint_access_type' 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 # 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 end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/data_breakpoint_info_response_body.rb |
ruby-dap-0.1.1 | lib/dap/data_breakpoint_info_response_body.rb |
ruby-dap-0.1.0 | lib/dap/data_breakpoint_info_response_body.rb |