GDBMI_stack_info_frame.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 12 Jun 2014 01:21:45 +0100
changeset 12 568a2971c977
child 74 d53d325c2930
permissions -rw-r--r--
Generated classes for MI commands. List of command as well as documentation was taken directly from GDB sources.

"{ Package: 'jv:libgdbs' }"

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

!GDBMI_stack_info_frame class methodsFor:'documentation'!

documentation
"
The `-stack-info-frame' Command
-------------------------------

Synopsis
........

      -stack-info-frame

   Get info on the selected frame.

{No value for `GDBN'} Command
.............................

The corresponding {No value for `GDBN'} command is `info frame' or
`frame' (without arguments).

Example
.......

     (gdb)
     -stack-info-frame
     ^done,frame={level='1',addr='0x0001076c',func='callee3',
     file='../../../devo/gdb/testsuite/gdb.mi/basics.c',
     fullname='/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c',line='17'}
     (gdb)


"
! !

!GDBMI_stack_info_frame methodsFor:'accessing'!

operation
	^ 'stack-info-frame'
! !