Sha256: 288073c8bfe911b0b003489ab3a5f9ef3337fe65e17d8011d8c04b6a56515a4c
Contents?: true
Size: 600 Bytes
Versions: 3
Compression:
Stored size: 600 Bytes
Contents
require_relative 'data_breakpoint_access_type' class DAP::DataBreakpoint < DAP::Base # An id representing the data. This id is returned from the dataBreakpointInfo request. property :dataId # The access type of the data. property :accessType, required: false, as: DAP::DataBreakpointAccessType # An optional expression for conditional breakpoints. property :condition, required: false # 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 end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/data_breakpoint.rb |
ruby-dap-0.1.1 | lib/dap/data_breakpoint.rb |
ruby-dap-0.1.0 | lib/dap/data_breakpoint.rb |