Sha256: 3502ac4d8852f973232ecdd22cc2baa5261c009e34adedcf5f407b9b5756fc96
Contents?: true
Size: 556 Bytes
Versions: 3
Compression:
Stored size: 556 Bytes
Contents
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 # 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 # The bytes read from memory, encoded using base64. property :data, required: false end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/read_memory_response_body.rb |
ruby-dap-0.1.1 | lib/dap/read_memory_response_body.rb |
ruby-dap-0.1.0 | lib/dap/read_memory_response_body.rb |