At Intellij Idea, I'm looking for a way to evaluate many expressions in debug mode with a single command.
Usually I can evaluate a single command with Right Click β Evaluate Expression( ALT+ F8). I would like to be able to evaluate a bunch of expressions like:
System.out.println(myVar1);
System.out.println(myVar2);
In Eclipse, you can run such a βscript of expressions,β but I cannot find a solution in Idea.
source
share