Sha256: a4e20b75dc2e071b0c2e456b9a4f94a5b0114f38223d6dab85b4c84d7223933b

Contents?: true

Size: 724 Bytes

Versions: 1

Compression:

Stored size: 724 Bytes

Contents

require_relative 'stack_frame_format'

# Arguments for ‘stackTrace’ request.
class DAP::StackTraceArguments < DAP::Base
  # Retrieve the stacktrace for this thread.
  property :threadId, as: 'number'

  # The index of the first frame to return; if omitted frames start at 0.
  property :startFrame, required: false, as: 'number'

  # The maximum number of frames to return. If levels is not specified or 0, all frames are returned.
  property :levels, required: false, as: 'number'

  # 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

1 entries across 1 versions & 1 rubygems

Version Path
ruby-dap-0.1.3 lib/dap/stack_trace_arguments.rb