Sha256: f0dd7bcfe654b6fc37ef272e551b3a47c2b64dce16381da0ab7da9d8a5cfda49
Contents?: true
Size: 435 Bytes
Versions: 1
Compression:
Stored size: 435 Bytes
Contents
require_relative 'stack_frame' # Response to ‘stackTrace’ request. class DAP::StackTraceResponseBody < DAP::Base # The frames of the stackframe. If the array has length zero, there are no stackframes available. # This means that there is no location information available. property :stackFrames, as: many(DAP::StackFrame) # The total number of frames available. property :totalFrames, required: false, as: 'number' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/stack_trace_response_body.rb |