GDBMI_gdb_set.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
equal deleted inserted replaced
11:474fbb650afe 12:568a2971c977
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBMICommand subclass:#GDBMI_gdb_set
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_gdb_set class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-gdb-set' Command
       
    15 ----------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -gdb-set
       
    21 
       
    22    Set an internal {No value for `GDBN'} variable.
       
    23 
       
    24 {No value for `GDBN'} Command
       
    25 .............................
       
    26 
       
    27 The corresponding {No value for `GDBN'} command is `set'.
       
    28 
       
    29 Example
       
    30 .......
       
    31 
       
    32      (gdb)
       
    33      -gdb-set $foo=3
       
    34      ^done
       
    35      (gdb)
       
    36 
       
    37 
       
    38 "
       
    39 ! !
       
    40 
       
    41 !GDBMI_gdb_set methodsFor:'accessing'!
       
    42 
       
    43 operation
       
    44 	^ 'gdb-set'
       
    45 ! !
       
    46