Executing messages individually
Stepping through code one message at a time enables you to check its execution. The push buttons in the middle of the debugger provide four ways of stepping through code:
Into
Display the source code of the next method. It takes you into other methods and objects.
Over
Execute the message that is sent next without displaying the method's source code. It skips over the messages used to the next message in the method.
Return
Execute the code and stop only if an error is found in one of the messages in the message stack. This is the fastest way to step through code. It stops only at a return statement in a method.
Resume (or Stop)
Continue the process until it completes. If the process is running, you can select Stop.
You can try each one of these out from the debugger opened in Adding the message halt. To begin, select UndefinedObject>>#Doit from the stack. The message halt is highlighted in the description pane with the statement add: 'Alix' below it. Select Into. The statement add: 'Alix' is now highlighted with UndefinedObject>>#Doit the top of the stack.
Stepping through code
If you continue selecting Into, the debugger steps through a series of messages. After it executes the methods used for add: 'Alix', it returns to UndefinedObject>>#Doit. The next statement, add: 'Sam', is now highlighted.
Now try Over. Selecting Over highlights the next statement, add: 4.
Next, select Return. This highlights the entire expression that you evaluated.
Finally, select Resume. The code executes and the debugger closes.
As you step through the messages in the stack, you can inspect objects and see how their contents change as a result of messages.
Last modified date: 03/13/2019