Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Better Debugger
Last updated at 2:23 pm UTC on 16 January 2006
This is just copied verbatim from my mail to the Squeak mailing list:


[July 2001]
Hello,
since I think that the Squeak Debugger misses some very important features, I started to implement them. The attached changeset is my first shot at the issue; it implement the following features:

  1. Debugger inspector panes are updated on every step. (that was an easy one)
  2. PC highlighting is improved for loops, blocks, variable assignments. No more highlighting of the instruction after the loop block.
  3. Fast step method executes the message using perform:, not by simulation. Mucho mucho quicker!
  4. Exceptions caught within stepped methods are properly displayed in the debugger. No more 'Cant simulate halt. Proceed to bypass it.'
  5. nonlocal returns are caught.

There are almost certainly bugs in my code; I did not have much time for testing and so rely on you to find them :-) I have thought about writing unit test code, but for the most tricky aspects I have difficulties setting up test cases in my mind, let alone in code...

Some more things I would like to do are:

However, these will require some more time. If you have any additional suggestions, please let us discuss them here on the list.

Cheers,
Hans-Martin Mosner

Note that the methods in the changeset are carefully arranged not to break on file-in. If you just file out the changeset, the resulting file will almost certainly not work. That's what one deserves for messing with the Parser...

BetterDebugger.cs

For those interested in how this code works, here is Better Debugger.

Probably the change set above is now in the standard release.
Somebody might check this (i.e. ask on the mailing list)
and put a note here or better rewrite the instructions above.
14-FEB-2003 hjh;


[14-February 2003]
An entirely unrelated change set was done in the last few days.

The changeSet is on the SqueakMap now.

[17-February 2003] Thierry Reignier Debugger-FKeys-TREG-1.cs

The changeSet is on the SqueakMap .

Added F key handling to support faster debugging. These keys are handled whereever your cursor is the debugger windows.
(Valid for windows-like keyboard having F1 to F12 keys)

Debugger:
F4 close
F5 send (or sept into)
F6 step (or step over)
F7 step through
F8 create - if installed
F9 proceed
F10 restart
F11 where

PreDebugger
F4 (abandon),
F5 (debug)
F8 (create) if installed
F9 (proceed)