Sha256: 661ba197965d25a25144c3bdd697dd32a7c040eb0070a20a1aabdacc306ded21
Contents?: true
Size: 969 Bytes
Versions: 1
Compression:
Stored size: 969 Bytes
Contents
# A GotoTarget describes a code location that can be used as a target in the # ‘goto’ request. The possible goto targets can be determined via the # ‘gotoTargets’ request. class DAP::GotoTarget < DAP::Base # Unique identifier for a goto target. This is used in the goto request. property :id, as: 'number' # The name of the goto target (shown in the UI). property :label, as: 'string' # The line of the goto target. property :line, as: 'number' # An optional column of the goto target. property :column, required: false, as: 'number' # An optional end line of the range covered by the goto target. property :endLine, required: false, as: 'number' # An optional end column of the range covered by the goto target. property :endColumn, required: false, as: 'number' # Optional memory reference for the instruction pointer value represented by this target. property :instructionPointerReference, required: false, as: 'string' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.3 | lib/dap/goto_target.rb |