plugins/bee/GDBMI_bee_list_symbols.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 10 Jun 2019 14:59:26 +0100
changeset 165 1e2a4cb4afdd
parent 160 fea681d31a3c
permissions -rw-r--r--
plugins/bee: add menu item to disassemble given symbol Also, symbol list is auto-updated each time inferior stops. This may take time and has to be oprimized (later)

"{ Package: 'jv:vdb/plugins/bee' }"

"{ NameSpace: Smalltalk }"

GDBMICommand subclass:#GDBMI_bee_list_symbols
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'VDB-Plugin-Bee-Commands'
!

!GDBMI_bee_list_symbols methodsFor:'accessing'!

operation
    "superclass GDBMICommand says that I am responsible to implement this method"

    ^ 'bee-list-symbols'

    "Modified: / 07-06-2019 / 14:15:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!GDBMI_bee_list_symbols methodsFor:'accessing-descriptors'!

resultDescription
    ^ super resultDescription
        define: #result as: Array of: BeeSymbol;
        yourself

    "Created: / 07-06-2019 / 14:30:46 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !