Interface DisassembledInstructionEntry

interface DisassembledInstructionEntry {
    allowBreakpoint: boolean;
    instruction: DisassembledInstruction;
    instructionAddress?: bigint;
    isBreakpointEnabled: boolean;
    isBreakpointSet: boolean;
}

Properties

allowBreakpoint: boolean
instruction: DisassembledInstruction
instructionAddress?: bigint
isBreakpointEnabled: boolean
isBreakpointSet: boolean