Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 73525 - [variables] auto view of all last used variables in debugger
Summary: [variables] auto view of all last used variables in debugger
Status: RESOLVED DUPLICATE of bug 28976
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Debug (show other bugs)
Version: 3.0   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-Debug-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-09-09 05:12 EDT by frank musolf CLA
Modified: 2007-09-21 15:53 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description frank musolf CLA 2004-09-09 05:12:06 EDT
hi,

i remember for a good feature of microsoft visual c++ debugger and perhaps is 
this a nice idea for eclipse. 
in visual c++ debugger exists a optional feature to show automaticly all last 
used variables on a breakpoint. inclusive member variables.

at the moment it is nessesary to search member variables by hand to show her 
content. it is a little bit elaborately.

frank musolf
Comment 1 Darin Wright CLA 2004-10-13 11:35:24 EDT
Can you elaborate on the feature request with an example, the details are not 
clear to me - i.e. what are "all last used variables". Currently marking as 
later.
Comment 2 frank musolf CLA 2004-10-13 12:14:07 EDT
it is possible now in the variable-view of debugging perspective to see all the 
variables of current scope. 

It would be much more convinient to have them resorted every time just before 
and after they were accessed either for reading or writing. 
This affects also the member variables, so you could see them without clicking 
on "this" first. i.e.:

code:                           view:

private String a = null;
...

before execution:
void setValue(String b)
{                               String this.a = null;
  a = b;                        String b = "abc";
}

after execution:                String this.a = "new value";
                                String b = "abc"
                                ...
                                [+] this

value of this.a is double in view, one as single line, one in expand list of 
this variable.

Comment 3 Curtis Windatt CLA 2007-09-21 15:53:19 EDT

*** This bug has been marked as a duplicate of bug 28976 ***