Sha256: 9a9e49d43a3a4afafa60007d28b7e800e43489accd19ad01280c6d2bedc4e2da

Contents?: true

Size: 773 Bytes

Versions: 3

Compression:

Stored size: 773 Bytes

Contents

require_relative 'value_format'

class DAP::StackFrameFormat < DAP::ValueFormat
  # Displays parameters for the stack frame.
  property :parameters, required: false

  # Displays the types of parameters for the stack frame.
  property :parameterTypes, required: false

  # Displays the names of parameters for the stack frame.
  property :parameterNames, required: false

  # Displays the values of parameters for the stack frame.
  property :parameterValues, required: false

  # Displays the line number of the stack frame.
  property :line, required: false

  # Displays the module of the stack frame.
  property :module, required: false

  # Includes all stack frames, including those the debug adapter might otherwise hide.
  property :includeAll, required: false
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-dap-0.1.2 lib/dap/stack_frame_format.rb
ruby-dap-0.1.1 lib/dap/stack_frame_format.rb
ruby-dap-0.1.0 lib/dap/stack_frame_format.rb