CodeGuide 7.0 - featuring unique back-in-time debugger

Look at http://www.omnicore.com/debugger.htm

1. Topnotch IDE for Java and JSP – we can argue about it
2. Unique back-in-time debugger – it shouldn’t be unique
3. Unique on-the-fly compiler – we can argue about it
4. Refactorings, inspections, smart tools – everybody has it
5. Full support for Java 1.5 – !!!

0
33 comments
Avatar
Permanently deleted user

Keith Lea <keith@cs.oswego.edu> wrote in
news:3310183.1080271726547.JavaMail.itn@is.intellij.net:

No, CodeGuide's debugger records the state of your program after each
instruction, and lets you view the value that any field or variable
has ever had, at any point during the program's execution.


The first back in time debugger I'd heard of was RootCause
(www.ocsystems.com).

Bill Uetrecht

0
Avatar
Permanently deleted user

This functionality sounds like the "Pop Frame" feature that was added
into IDEA recently.

N.

David H. McCoy wrote:

In article <c3sfo0$k6v$1@is.intellij.net>, vilya.harvey@digitalsteps.com
says...

>>Keith Lea wrote:
>>
>>>VC++6 had a back in time debugger? I thought CodeGuide was the first IDE with this feature.
>>
>>I suspect he's confusing it with the "Edit and Continue" feature which was
>>introduced in VC++ 6.0 (IIRC). That's HotSwap to you and me.
>>
>>Vil.
>>


Let's say you were on line 50(breakpoint) and you say the problem on
line 45, int x = 5 should be int x = 10, VC++ would let you make the
change, put the debug pointer on line 45, and move back to that point
without hitting line 51.

Isn't that back in time?

0
Avatar
Permanently deleted user

This functionality sounds like the "Pop Frame"
feature that was added
into IDEA recently.


Except that "Pop Frame" does not undo all the
actions (assignments, method calls, ...) taken
between stepping into a method and popping;
BiTD does that.

Regards,
Jens

0

Please sign in to leave a comment.