Debugger problems Wiki page

Rubyists,

I’ve created a Wiki page to record problems with the debugger. If someone
knows of a more appropriate bug-tracking system than this, please let me know.

http://www.rubygarden.org/ruby?RubyDebuggerProblems

Current entry:

When setpping through this code (with ‘n[ext]’), the elsif line is not
displayed. Why if but not elsif?

This makes it difficult to see program logic in action when using the
debugger, as well as making it impossible to step into methods contained in
the elsif line.

x = 5

if x == 4
puts "Hello"
elsif x == 5 # Debugger doesn’t show this line
puts "Goodbye"
end

···


Gavin Sinclair Software Engineer
Sydney, Australia Soyabean Software Pty Ltd

Hi,

From: Gavin Sinclair [mailto:gsinclair@soyabean.com.au]
Sent: Wednesday, October 23, 2002 2:56 PM

I’ve created a Wiki page to record problems with the
debugger. If someone
knows of a more appropriate bug-tracking system than this,
please let me know.

http://www.rubygarden.org/ruby?RubyDebuggerProblems

Thank you for your effort.
I’ll back to debugger after replacing current RAA…

When setpping through this code (with ‘n[ext]’), the elsif line is not
displayed. Why if but not elsif?

Changed(Fixed?) in ruby/1.7 core. Wait 1.8 to be released.

Regards,
// NaHi

Hi,

From: Gavin Sinclair [mailto:gsinclair@soyabean.com.au]
Sent: Wednesday, October 23, 2002 2:56 PM

I’ve created a Wiki page to record problems with the
debugger. If someone
knows of a more appropriate bug-tracking system than this,
please let me know.

http://www.rubygarden.org/ruby?RubyDebuggerProblems

Thank you for your effort.
I’ll back to debugger after replacing current RAA…

Thanks NaHi. I hope this can be helpful.

When setpping through this code (with ‘n[ext]’), the elsif line is not
displayed. Why if but not elsif?

Changed(Fixed?) in ruby/1.7 core. Wait 1.8 to be released.

Excellent. I’ve been meaning to update to 1.7 (everywhere) anyway…

Regards,
// NaHi

Gavin

···

From: “NAKAMURA, Hiroshi” nahi@keynauts.com