Sha256: 53563e8206dffe46503515c2b14ba5d510839a56a4ec6f5f960f65e5e64dbde8
Contents?: true
Size: 603 Bytes
Versions: 1
Compression:
Stored size: 603 Bytes
Contents
require_relative 'value_format' # Arguments for ‘setExpression’ request. class DAP::SetExpressionArguments < DAP::Base # The l-value expression to assign to. property :expression, as: 'string' # The value expression to assign to the l-value expression. property :value, as: 'string' # Evaluate the expressions in the scope of this stack frame. If not specified, the expressions are evaluated in the global scope. property :frameId, required: false, as: 'number' # Specifies how the resulting value should be formatted. 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/set_expression_arguments.rb |