GDBMI_exec_next.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
equal deleted inserted replaced
11:474fbb650afe 12:568a2971c977
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBMICommand subclass:#GDBMI_exec_next
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_exec_next class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-exec-next' Command
       
    15 ------------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -exec-next [--reverse]
       
    21 
       
    22    Resumes execution of the inferior program, stopping when the
       
    23 beginning of the next source line is reached.
       
    24 
       
    25    If the `--reverse' option is specified, resumes reverse execution of
       
    26 the inferior program, stopping at the beginning of the previous source
       
    27 line.  If you issue this command on the first line of a function, it
       
    28 will take you back to the caller of that function, to the source line
       
    29 where the function was called.
       
    30 
       
    31 {No value for `GDBN'} Command
       
    32 .............................
       
    33 
       
    34 The corresponding {No value for `GDBN'} command is `next'.
       
    35 
       
    36 Example
       
    37 .......
       
    38 
       
    39      -exec-next
       
    40      ^running
       
    41      (gdb)
       
    42      *stopped,reason='end-stepping-range',line='8',file='hello.c'
       
    43      (gdb)
       
    44 
       
    45 
       
    46 "
       
    47 ! !
       
    48 
       
    49 !GDBMI_exec_next methodsFor:'accessing'!
       
    50 
       
    51 operation
       
    52 	^ 'exec-next'
       
    53 ! !
       
    54