Sha256: d16f19d0c8de74f87089a4052bada7b0514d5cd06a34805199c5fd443d9e1909

Contents?: true

Size: 464 Bytes

Versions: 1

Compression:

Stored size: 464 Bytes

Contents

# Arguments for ‘readMemory’ request.
class DAP::ReadMemoryArguments < DAP::Base
  # Memory reference to the base location from which data should be read.
  property :memoryReference, as: 'string'

  # Optional offset (in bytes) to be applied to the reference location before reading data. Can be negative.
  property :offset, required: false, as: 'number'

  # Number of bytes to read at the specified location and offset.
  property :count, as: 'number'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-dap-0.1.3 lib/dap/read_memory_arguments.rb