Sha256: e6bb4148d1095118600b4fc584e32a7055ab8fd8484d04cff49682385d7e8369

Contents?: true

Size: 823 Bytes

Versions: 3

Compression:

Stored size: 823 Bytes

Contents

require_relative 'value_format'

class DAP::VariablesArguments < DAP::Base
  # The Variable reference.
  property :variablesReference

  # Optional filter to limit the child variables to either named or indexed. If omitted, both types are fetched.
  # Values: 'indexed', 'named', etc.
  property :filter, required: false # 'indexed' | 'named'

  # The index of the first variable to return; if omitted children start at 0.
  property :start, required: false

  # The number of variables to return. If count is missing or 0, all variables are returned.
  property :count, required: false

  # Specifies details on how to format the Variable values.
  # The attribute is only honored by a debug adapter if the capability 'supportsValueFormattingOptions' is true.
  property :format, required: false, as: DAP::ValueFormat
end

Version data entries

3 entries across 3 versions & 1 rubygems

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