"standing" at sort and doing a "step over" should not step into the sort-input procedure, but should position after the sort (internally using until of course).
... side note: if "step into" was used and then "continue until return" is used, then the procedure should be executed and the debugging should go to sort-input;
note to self: codegen needs to place the source information before /* USE PROCEDURE, step into will then nicely at least step to that line first (and then again depeding on "step into" / "step over" should go into that or not.
From worldcities7.cbl:
"standing" at
sort
and doing a "step over" should not step into thesort-input
procedure, but should position after the sort (internally usinguntil
of course).... side note: if "step into" was used and then "continue until return" is used, then the procedure should be executed and the debugging should go to
sort-input
;note to self: codegen needs to place the source information before
/* USE PROCEDURE
, step into will then nicely at least step to that line first (and then again depeding on "step into" / "step over" should go into that or not.