View source
typedef DisassembleArguments
package vscode.debugProtocol
import vscode.debugProtocol.DebugProtocol
Arguments for 'disassemble' request.
Fields
optionalresolveSymbols:Null<Bool>
If true, the adapter should attempt to resolve memory addresses and other values to symbolic names.
optionaloffset:Null<Int>
Optional offset (in bytes) to be applied to the reference location before disassembling. Can be negative.
memoryReference:String
Memory reference to the base location containing the instructions to disassemble.
optionalinstructionOffset:Null<Int>
Optional offset (in instructions) to be applied after the byte offset (if any) before disassembling. Can be negative.
optionalinstructionCount:Null<Int>
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.