Sha256: 0a93838d6860a6dc8a26e297c07e0aa33ee48c846dac9b088612b0a3d7d798e2
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# Response to ‘setVariable’ request. class DAP::SetVariableResponseBody < DAP::Base # The new value of the variable. property :value, as: 'string' # The type of the new value. Typically shown in the UI when hovering over the value. property :type, required: false, as: 'string' # If variablesReference is > 0, the new value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. # The value should be less than or equal to 2147483647 (2^31 - 1). property :variablesReference, required: false, as: 'number' # The number of named child variables. # The client can use this optional information to present the variables in a paged UI and fetch them in chunks. # The value should be less than or equal to 2147483647 (2^31 - 1). property :namedVariables, required: false, as: 'number' # The number of indexed child variables. # The client can use this optional information to present the variables in a paged UI and fetch them in chunks. # The value should be less than or equal to 2147483647 (2^31 - 1). property :indexedVariables, required: false, as: 'number' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/set_variable_response_body.rb |