Sha256: 2125bdc2647f703fdf87861a6d759bc1302ca6fd9d67e9def04589381ae1cf27

Contents?: true

Size: 691 Bytes

Versions: 3

Compression:

Stored size: 691 Bytes

Contents

class DAP::GotoTarget < DAP::Base
  # Unique identifier for a goto target. This is used in the goto request.
  property :id

  # The name of the goto target (shown in the UI).
  property :label

  # The line of the goto target.
  property :line

  # An optional column of the goto target.
  property :column, required: false

  # An optional end line of the range covered by the goto target.
  property :endLine, required: false

  # An optional end column of the range covered by the goto target.
  property :endColumn, required: false

  # Optional memory reference for the instruction pointer value represented by this target.
  property :instructionPointerReference, required: false
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-dap-0.1.2 lib/dap/goto_target.rb
ruby-dap-0.1.1 lib/dap/goto_target.rb
ruby-dap-0.1.0 lib/dap/goto_target.rb