Skip to main content



      Home
Home » Newcomers » Newcomers » improvements to the debugger
improvements to the debugger [message #177791] Wed, 01 November 2006 07:54 Go to next message
Eclipse UserFriend
Originally posted by: giraffiti101.yahoo.com

Hi all,
Are there any planes to improve the debugging functions in Eclipse?
I'm missing some nice features that were in Visual c++.
For instance showing the return values from functions in the variables
window.
For example if you are stepping over this line, you there is no easy way
to check the return value of calcValue():

int x = var1 * calcValue()/1000;

....

public int calcValue()
{
return Math.sqrt(member)*1.222;
}

you end up writing an extra line of code, just to see the return value:

public int calcValue()
{
int x = Math.sqrt(member)*1.222;
return x;
}
Re: improvements to the debugger [message #177818 is a reply to message #177791] Wed, 01 November 2006 08:57 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: wayne.beaton._NOSPAM_eclipse.org

Ed wrote:
> Hi all,
> Are there any planes to improve the debugging functions in Eclipse? I'm
> missing some nice features that were in Visual c++. For instance showing
> the return values from functions in the variables window. For example if
> you are stepping over this line, you there is no easy way to check the
> return value of calcValue():
>
> int x = var1 * calcValue()/1000;
>
> ...
>
> public int calcValue()
> {
> return Math.sqrt(member)*1.222;
> }
>
> you end up writing an extra line of code, just to see the return value:
>
> public int calcValue()
> {
> int x = Math.sqrt(member)*1.222;
> return x;
> }
>
>
Hi Ed. Try asking this question in eclipse.tools.cdt (C/C++ Development
Tools). You might also consider taking a look in Bugzilla to see if
there are any plans.

Wayne
Re: improvements to the debugger [message #177852 is a reply to message #177818] Wed, 01 November 2006 09:47 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: giraffiti101.yahoo.com

Does eclipse.tools.cdt have a web interface like this one?
Unfortunately I am not able to post in news groups
Re: improvements to the debugger [message #177859 is a reply to message #177852] Wed, 01 November 2006 11:03 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: wayne.beaton._NOSPAM_eclipse.org

Ed wrote:
> Does eclipse.tools.cdt have a web interface like this one?
> Unfortunately I am not able to post in news groups
>
It should. It's on the same server as this newsgroup.

Wayne
Re: improvements to the debugger [message #177895 is a reply to message #177791] Wed, 01 November 2006 12:17 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse4.rizzoweb.com

Ed wrote:
> Hi all,
> Are there any planes to improve the debugging functions in Eclipse? I'm
> missing some nice features that were in Visual c++. For instance showing
> the return values from functions in the variables window.

I know they are working on this feature for Java (see
https://bugs.eclipse.org/bugs/show_bug.cgi?id=75519). You may want to
post a similar feature request under the CDT product.

Hope this helps,
Eric
Re: improvements to the debugger [message #177903 is a reply to message #177895] Wed, 01 November 2006 12:43 Go to previous message
Eclipse UserFriend
Originally posted by: giraffiti101.yahoo.com

Yeah, I see now that many people have had the same wish, but seems to be
some problem in the java debugger that doesn't allow them to implement it.
Previous Topic:Update Manager
Next Topic:separate product and feature projects?
Goto Forum:
  


Current Time: Mon Nov 03 03:46:15 EST 2025

Powered by FUDForum. Page generated in 0.10270 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top