0

I would like to understand what does it mean in the KOMODO debugger to Stop,Step In,Step Over and Step Out as in the snippet below:

enter image description here

user2925716
  • 949
  • 1
  • 6
  • 13

1 Answers1

3

See the chapter Debugging your programs in the documentation.

  • Stop : Means stop the debugging session.
  • Step In : Means step into a sub routine (if the current statement is not a sub routine call, just step to the next line)
  • Step Over : Do not step into a sub routine (if the current statement is a sub routine call). This means that if the current statement is a subroutine call, it will execute the call and then stop at the next line.
  • Step Out : Means : finish execute the current sub routine and stop at the next statement in the caller
Håkon Hægland
  • 39,012
  • 21
  • 81
  • 174