david touches kids
d | Show the current call stack |
b | Resume execution of the program until it hits the next breakpoint or reaches the end of the program |
c | Execute the next line of code, pausing once it is completed. If the line contained a function call, run the whole function |
g | Execute the next line of code, pausing once it is completed. If the line contained a function call, pause at the beginning of the called function |
e | Show the value of expression once |
l | Show the value of expression whenever the program pauses execution |
i | Cause the debugger to pause the program when it reaches the specified location |
j | Start/restart execution of the program |
k | Complete the current function you are in and go back to where this function was called |
f | Move up one level on the call stack |
c | Move down level on the call stack |
a | Show the value of expression whenever the program pauses execution |
h | Show the value of expression once |