VDBMI_vdb_var_list_children.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 06 Sep 2019 02:30:16 +0100
changeset 183 91a467093d63
parent 178 5d1c3e5fab6b
child 264 23960fcb9dac
permissions -rw-r--r--
Fix `VDBStackApplication >> delayedUpdateAfterThreadStopped:` ...so stopped frame is pre-selected as default. This commit essentially undo the change done in 364ebdd1d42c: Generalize `VDBInstructionListView`

"
jv:vdb - Visual / VM Debugger
Copyright (C) 2015-now Jan Vrany

This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'

You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
"
"{ Package: 'jv:vdb' }"

"{ NameSpace: Smalltalk }"

GDBMI_var_list_children subclass:#VDBMI_vdb_var_list_children
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'VDB-Core-Commands'
!

!VDBMI_vdb_var_list_children class methodsFor:'documentation'!

copyright
"
jv:vdb - Visual / VM Debugger
Copyright (C) 2015-now Jan Vrany

This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'

You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
"
! !

!VDBMI_vdb_var_list_children methodsFor:'accessing'!

operation
        ^ 'vdb-var-list-children'

    "Created: / 06-07-2019 / 01:25:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!VDBMI_vdb_var_list_children methodsFor:'accessing-descriptors'!

resultDescription
    ^ (super resultDescription)
        define:#result
            as:Array
            of:VDBVariableObject;
        yourself

    "Created: / 08-07-2019 / 16:16:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !