This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 220840 - [debugger] Should show all variables on current line in variables view
Summary: [debugger] Should show all variables on current line in variables view
Status: NEW
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 7.3
Hardware: PC Linux
: P3 normal (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-25 12:56 UTC by sdlarsen
Modified: 2013-09-06 18:39 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sdlarsen 2012-10-25 12:56:15 UTC
It would be nice if the debugger automatically showed the variables used on the current line at the top of the variables view. Kind of like IntelliJ ;)
Comment 1 markiewb 2013-09-06 18:18:07 UTC
@Martin: Similar to the new feature in 7.4 where you show the current variable to be assigned when breaking on a field breakpoint or the exception when breaking on a exception breakpoint?
Comment 2 Martin Entlicher 2013-09-06 18:39:57 UTC
I'm afraid of the performance impact of this.
To find the variables used on the current line, it means that there has to be some Java parsing involved. The parser tasks can sometimes unpredictably block for some amount of time, if there are more of them scheduled to run or if there are some recent code changes. I'm not sure this is worth the possible problems...