Sha256: 6fbfe2908d9b7ca3ce3da741c005198cee99827fd5fc1d8daa00a72f13be4f5a
Contents?: true
Size: 898 Bytes
Versions: 1
Compression:
Stored size: 898 Bytes
Contents
require_relative 'value_format' # Arguments for ‘variables’ request. class DAP::VariablesArguments < DAP::Base # The Variable reference. property :variablesReference, as: 'number' # 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, as: 'string' # The index of the first variable to return; if omitted children start at 0. property :start, required: false, as: 'number' # The number of variables to return. If count is missing or 0, all variables are returned. property :count, required: false, as: 'number' # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/variables_arguments.rb |