plugins/bee/extensions.st
author Jan Vrany <jan.vrany@labware.com>
Tue, 26 Jul 2022 15:01:33 +0100
changeset 265 f2470f0dd9cd
parent 160 fea681d31a3c
permissions -rw-r--r--
Do not show address for (pseudo) instructions with no code While such instructions do not appear in GDB-produced disassembly, they may appear in some manually-generated instruction lists. One example of such (pseudo) instruction is label.

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

!VDBDebuggerApplication methodsFor:'menu actions'!

doOpenBeeSymbols
    self doOpenToolApplicationClass: BeeSymbolListApplication name

    "Created: / 07-06-2019 / 21:39:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!VDBDebuggerApplication methodsFor:'menus'!

mainMenuBee: aMenu
    "Adds a Smalltalk/X debugging menu items to the context menu."

    <menuextension: #mainMenu>

    (aMenu menuItemLabeled: 'Window') submenu
        addSeparator;
        addItem: (
            (MenuItem label: (self class classResources string: 'Bee Symbols')
                 itemValue: #doOpenBeeSymbols)
                 receiver: self
        ).

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

!jv_vdb_plugins_bee class methodsFor:'documentation'!

extensionsVersion_HG

    ^ '$Changeset: <not expanded> $'
! !