Suppose I have java code like this (only as Example):
public void someMethod(){ int a = 3; int b = 2; // <-- stay debug here a = b + 2; Sy
You can't just skip 'line execution' when debugging. You can press F8 to step over.