Let's make sure issue is not already fixed in latest builds first.
Suggestion
The goal is to facilitate comparative debugging: I'm the same application from the same project with different options, and I want to more easily compare their execution.
From a fresh installation and clean workspace:
- Create a .java project with a file
public class Foo {
public static void main(String[] args) {
long n = System.currentTimeMillis();
n++;
}
}
- Put a breakpoint on the
n++ line
- Right-click > Debug As > Java application
- Again, Right-click > Debug As > Java application
I reach state: both processes are stopped on breakpoint, at the same line, I see them in the "Debug" view
And would like to be able to: Compare instantly the value of n in both executions.
This could be achieved by allowing the "Variables" view to add a new "value" column for the specific launch. An action such as "Show value for " or "Show value for " would be perfect.
Community
Let's make sure issue is not already fixed in latest builds first.
Suggestion
The goal is to facilitate comparative debugging: I'm the same application from the same project with different options, and I want to more easily compare their execution.
From a fresh installation and clean workspace:
n++lineI reach state: both processes are stopped on breakpoint, at the same line, I see them in the "Debug" view
And would like to be able to: Compare instantly the value of
nin both executions.This could be achieved by allowing the "Variables" view to add a new "value" column for the specific launch. An action such as "Show value for " or "Show value for " would be perfect.
Community