Stepping through GnuCash code (Start Again, Previous)
And so on - I think this is enough to give the general idea! In
summary, when single stepping through code like this there are three
stepping commands available:
- "i" - "Step Into Current
Expression" - run until the next evaluation step of any kind
(evaluation, application or return) and with any source location
- "SPC" - "Step Through Current File" - run until the next
evaluation step of any kind (evaluation, application or return) with
source location in the current file
- "o" - "Step Over Current
Expression" - run until the current frame completes.
For more
information on the facilities provided by guile-debugging, please see
the full documentation at http://www.ossau.uklinux.net/guile-debugging.
If you have any feedback about this demo, please send it to me at mailto:neil@ossau.uklinux.net.
Start Again