Sha256: 069401b287854b2a02b6bc0e9bab523c4efab35cbf12ce0e8ff897781c0ae5a3

Contents?: true

Size: 638 Bytes

Versions: 1

Compression:

Stored size: 638 Bytes

Contents

# Response to ‘readMemory’ request.
class DAP::ReadMemoryResponseBody < DAP::Base
  # The address of the first byte of data returned.
  # Treated as a hex value if prefixed with '0x', or as a decimal value otherwise.
  property :address, as: 'string'

  # The number of unreadable bytes encountered after the last successfully read byte.
  # This can be used to determine the number of bytes that must be skipped before a subsequent 'readMemory' request will succeed.
  property :unreadableBytes, required: false, as: 'number'

  # The bytes read from memory, encoded using base64.
  property :data, required: false, as: 'string'
end

Version data entries

1 entries across 1 versions & 1 rubygems

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