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
It is not possible to skip the EXECUTION of the lines in IntelliJ and even in Eclipse. Only thing you can do is you can do step over (F8)-which will trace line by line without going inside any function.
One more thing is Step out(Shift+F8)- which will go to next debug point directly by executing in between lines in that single step.