GDBMI_var_info_num_children.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 24 Sep 2014 09:46:37 +0100
changeset 46 d06a04ecc788
parent 12 568a2971c977
child 78 c24e7d8bc881
permissions -rw-r--r--
Changed GDBDebugger>>send:wait: to block until event set finishes. In other words, method returns after command finished and all event handlers processed (except those for GDBEventSetFinishedEvent). Not really sure this is good idea...

"{ Package: 'jv:libgdbs' }"

GDBMICommand subclass:#GDBMI_var_info_num_children
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Commands-MI'
!

!GDBMI_var_info_num_children class methodsFor:'documentation'!

documentation
"
The `-var-info-num-children' Command
------------------------------------

Synopsis
........

      -var-info-num-children NAME

   Returns the number of children of a variable object NAME:

      numchild=N

   Note that this number is not completely reliable for a dynamic
varobj.  It will return the current number of children, but more
children may be available.


"
! !

!GDBMI_var_info_num_children methodsFor:'accessing'!

operation
	^ 'var-info-num-children'
! !

!GDBMI_var_info_num_children class methodsFor:'documentation'!

version_HG

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