Does INTELIJ Idea have such an analysis of the code that would check every instruction and directly, line by line, output (translate) all actions performed on each line? For example.
while(true) { incr++; } System.out.println("Finished"); Code analysis would output:
enter the while loop: increment incr increment incr ...
Now I understand where the program stops working correctly. This would help recognize which part of the code something went wrong. 