Previous:
Debugger-inferior process properties
, Up:
Debugger
4.1.5 Debugger: stepping commands
continue
Terminate the controlling process and continue execution of the traced process.
finish
Run to the next return.
finish: aContext
Run up until aContext returns.
next
Run to the end of the current line in the inferior process, skipping over message sends.
slowFinish
Run in single-step mode up to the next return.
slowFinish: aContext
Run in single-step mode until aContext returns.
step
Run to the end of the current line in the inferior process or to the next message send.
stepBytecode
Run a single bytecode in the inferior process.
stopInferior
Suspend the inferior process and raise a DebuggerReentered notification in the controlling process.
stopInferior: anObject
Suspend the inferior process and raise a DebuggerReentered notification in the controlling process with anObject as the exception's message.