Sha256: b1a5b288c15ab09cc93b4b0696341ab3d32b46b78f58fa9eacadb388c494c7f2
Contents?: true
Size: 640 Bytes
Versions: 3
Compression:
Stored size: 640 Bytes
Contents
require_relative 'stack_frame_format' class DAP::StackTraceArguments < DAP::Base # Retrieve the stacktrace for this thread. property :threadId # The index of the first frame to return; if omitted frames start at 0. property :startFrame, required: false # The maximum number of frames to return. If levels is not specified or 0, all frames are returned. property :levels, required: false # Specifies details on how to format the stack frames. # The attribute is only honored by a debug adapter if the capability 'supportsValueFormattingOptions' is true. property :format, required: false, as: DAP::StackFrameFormat end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/stack_trace_arguments.rb |
ruby-dap-0.1.1 | lib/dap/stack_trace_arguments.rb |
ruby-dap-0.1.0 | lib/dap/stack_trace_arguments.rb |