[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Q] HOWTO redirect a i/o-port in Unix??



At 4:56 PM -0800 2/28/00, Leo Razoumov wrote:
>
>     MF> M own experience: I used to use the Chez Scheme debugger. 
>Once I started
>     MF> following my own guidelines, I have hardly ever needed to think about
>     MF> debugging. Seriously. So I have become a beliefer in my own 
>guidelines :-)
>
>A good debugger never hurts! Will DrScheme-v102 allow to step 
>through a code in
>"Full Scheme" mode??
>

There are two separate pieces to the stepper; the annotater, which 
elaborates a user's program into one which tracks its own evaluation, 
and the reconstructor, which uses that runtime information to 
reconstruct the source code.  The first of these is relatively 
straightforward and has already been extended to cover most of the 
language.  The reconstructor is much more difficult, due to the twin 
problems of representing the store and of back-translating macros.

The upshot of this is that while 102 may contain some kind of 
debugging facility for 'Full Scheme', it will certainly not include a 
full stepper.

john "foot" clements