GDBMI_gdb_set.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 12 Jun 2014 01:21:45 +0100
changeset 12 568a2971c977
child 78 c24e7d8bc881
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_gdb_set
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Commands-MI'
!

!GDBMI_gdb_set class methodsFor:'documentation'!

documentation
"
The `-gdb-set' Command
----------------------

Synopsis
........

      -gdb-set

   Set an internal {No value for `GDBN'} variable.

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

The corresponding {No value for `GDBN'} command is `set'.

Example
.......

     (gdb)
     -gdb-set $foo=3
     ^done
     (gdb)


"
! !

!GDBMI_gdb_set methodsFor:'accessing'!

operation
	^ 'gdb-set'
! !