Interface DisassemblyViewRendererReference

interface DisassemblyViewRendererReference {
    currentInstructionAddresses: (undefined | string)[];
    debugSession: undefined | {
        id: string;
    };
    focusedCurrentInstructionAddress: undefined | string;
    focusedInstructionAddress: undefined | string;
    fontInfo: BareFontInfo;
    isSourceCodeRender: boolean;
    onDidChangeStackFrame: IEvent<void>;
}

Properties

currentInstructionAddresses: (undefined | string)[]
debugSession: undefined | {
    id: string;
}

Type declaration

  • id: string
focusedCurrentInstructionAddress: undefined | string
focusedInstructionAddress: undefined | string
fontInfo: BareFontInfo
isSourceCodeRender: boolean
onDidChangeStackFrame: IEvent<void>