Sha256: 19f20fd2c4c84ee0468c559a4674c4bd6aa7194ea21b1078168dc77ca6ddd2f6
Contents?: true
Size: 661 Bytes
Versions: 1
Compression:
Stored size: 661 Bytes
Contents
require_relative 'breakpoint' # Response to ‘setBreakpoints’ request. Returned is information about each # breakpoint created by this request. This includes the actual code location and # whether the breakpoint could be verified. The breakpoints returned are in the # same order as the elements of the ‘breakpoints’ (or the deprecated ‘lines’) # array in the arguments. class DAP::SetBreakpointsResponseBody < DAP::Base # Information about the breakpoints. # The array elements are in the same order as the elements of the 'breakpoints' (or the deprecated 'lines') array in the arguments. property :breakpoints, as: many(DAP::Breakpoint) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/set_breakpoints_response_body.rb |