Sha256: c12fbe0a5717e4de3b89e04143b38b2855d675f68f4106007f0316f46816419c
Contents?: true
Size: 920 Bytes
Versions: 3
Compression:
Stored size: 920 Bytes
Contents
class DAP::DisassembleArguments < DAP::Base # Memory reference to the base location containing the instructions to disassemble. property :memoryReference # Optional offset (in bytes) to be applied to the reference location before disassembling. Can be negative. property :offset, required: false # Optional offset (in instructions) to be applied after the byte offset (if any) before disassembling. Can be negative. property :instructionOffset, required: false # Number of instructions to disassemble starting at the specified location and offset. # An adapter must return exactly this number of instructions - any unavailable instructions should be replaced with an implementation-defined 'invalid instruction' value. property :instructionCount # If true, the adapter should attempt to resolve memory addresses and other values to symbolic names. property :resolveSymbols, required: false end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/disassemble_arguments.rb |
ruby-dap-0.1.1 | lib/dap/disassemble_arguments.rb |
ruby-dap-0.1.0 | lib/dap/disassemble_arguments.rb |