diff -r 3d43348d694e -r fb73b0af430b GDBMI_data_disassemble.st --- a/GDBMI_data_disassemble.st Mon Jul 02 08:45:58 2018 +0200 +++ b/GDBMI_data_disassemble.st Fri Jun 22 11:39:15 2018 +0100 @@ -231,3 +231,20 @@ ^ 'data-disassemble' ! ! +!GDBMI_data_disassemble methodsFor:'accessing-descriptors'! + +resultDescription + ^ (super resultDescription) + define:#'asm_insns' + as:Array of:GDBInstructionsAndSourceLine whenTaggedBy: 'src_and_asm_line' + or:GDBInstruction whenTaggedBy: nil; + yourself + + " + Magritte::MADescriptionBuilder default flush. + GDBMI_data_disassemble new resultDescription" + + "Created: / 22-06-2018 / 10:24:16 / Jan Vrany " + "Modified: / 03-07-2018 / 17:17:49 / Jan Vrany " +! ! +