Eclipse java debugger: esclude some lines from Step Over

113 Views Asked by At

I'm debugging a java source and I want that a group of instructions must be executed at same press of Step Over.

Something like this:

debugcursor -> int a=10;
               int b=a+a;
               a=b*b;
               a++;

And, after pression of "Step Over":

               int a=10;
               int b=a+a;
               a=b*b;
debugcursor -> a++;

Is it possible to do it without any breakpoints and use of Step Run?

1

There are 1 best solutions below

0
On

You DONT have any other option other than using BreakPoints along with Resume (F8).