Sha256: 95a7df84c59e0e3981d48e7d1aaa30cc2b3e6703d1d0f5033a821a97a6f1c1ee
Contents?: true
Size: 931 Bytes
Versions: 1
Compression:
Stored size: 931 Bytes
Contents
require_relative 'value_format' # Provides formatting information for a stack frame. class DAP::StackFrameFormat < DAP::ValueFormat # Displays parameters for the stack frame. property :parameters, required: false, as: 'boolean' # Displays the types of parameters for the stack frame. property :parameterTypes, required: false, as: 'boolean' # Displays the names of parameters for the stack frame. property :parameterNames, required: false, as: 'boolean' # Displays the values of parameters for the stack frame. property :parameterValues, required: false, as: 'boolean' # Displays the line number of the stack frame. property :line, required: false, as: 'boolean' # Displays the module of the stack frame. property :module, required: false, as: 'boolean' # Includes all stack frames, including those the debug adapter might otherwise hide. property :includeAll, required: false, as: 'boolean' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/stack_frame_format.rb |