Monday, October 17, 2016

Success in single step

I can step through this program just fine.  Now, there should be no name space errors when I add local variable, properly defined.

print("I am executed ",CurrentLine)
print("I am executed ",CurrentLine)
print("I am executed ",CurrentLine)
print("I am executed ",CurrentLine)

CurrentLine is the StepCounter, inside the debugger, but its value is reflected justfine whenthe statements are executed remotely. Result:

I am executed  1

I am executed  2

I am executed  3

I am executed  4

So, I have used my debugger to correctly verify that my debugger CurrentLine iteration works. Currently I have the same ten lines of code left, enough to make sure watch variables are grabbed properly Latest source on a new blog page.

No comments: