HP Forums
Debugger enhancement request - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: Debugger enhancement request (/thread-11914.html)



Debugger enhancement request - BruceH - 12-06-2018 08:18 PM

When single-stepping through a program, please can we have the debugger automatically show the values of all variables mentioned on the current line and the value of any variable set on the preceding line?

Code:
e.g:
...
b := sin(a);     // Debugger shows variable a
c := ln(b);      // Debugger shows b and a (b at the top, a below it)
...

At the moment I find myself continually removing one variable and adding another to the display area.