You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to reproduce:
You have to start rdebug-ide and attach with the IDE, but no breakpoints set yet. If you debug a simple loop, you can set a breakpoint after debugger started or you can pause. So far so good, but if you resume execution, you can't pause again, and breakpoints have no effect either.
Most likely this is a bug on debase side, https://github.com/ruby-debug/debase/blob/77040d792a68bb1f4b65bd009356182867b3dd96/lib/debase/rbx.rb#L14
Possible workaround:
abs_prog_script = File.expand_path(Debugger::PROG_SCRIPT)
# debase debug_load will misbehave if it's started without a breakpoint
Debugger.add_breakpoint("debase_filler.rb", 1, nil) if Debugger.breakpoints.empty?
bt = debug_load(abs_prog_script, options.stop, options.load_mode)
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
You have to start rdebug-ide and attach with the IDE, but no breakpoints set yet. If you debug a simple loop, you can set a breakpoint after debugger started or you can pause. So far so good, but if you resume execution, you can't pause again, and breakpoints have no effect either.
Most likely this is a bug on debase side, https://github.com/ruby-debug/debase/blob/77040d792a68bb1f4b65bd009356182867b3dd96/lib/debase/rbx.rb#L14
Possible workaround:
The text was updated successfully, but these errors were encountered: