GDBMI_interpreter_exec.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GDBMI_interpreter_exec.st	Thu Jun 12 01:21:45 2014 +0100
@@ -0,0 +1,48 @@
+"{ Package: 'jv:libgdbs' }"
+
+GDBMICommand subclass:#GDBMI_interpreter_exec
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'GDB-Core-Commands-MI'
+!
+
+!GDBMI_interpreter_exec class methodsFor:'documentation'!
+
+documentation
+"
+The `-interpreter-exec' Command
+-------------------------------
+
+Synopsis
+--------
+
+     -interpreter-exec INTERPRETER COMMAND
+Execute the specified COMMAND in the given INTERPRETER.
+
+{No value for `GDBN'} Command
+-----------------------------
+
+The corresponding {No value for `GDBN'} command is `interpreter-exec'.
+
+Example
+-------
+
+     (gdb)
+     -interpreter-exec console 'break main'
+     &'During symbol reading, couldn't parse type; debugger out of date?.\n'
+     &'During symbol reading, bad structure-type format.\n'
+     ~'Breakpoint 1 at 0x8074fc6: file ../../src/gdb/main.c, line 743.\n'
+     ^done
+     (gdb)
+
+
+"
+! !
+
+!GDBMI_interpreter_exec methodsFor:'accessing'!
+
+operation
+	^ 'interpreter-exec'
+! !
+