Open
Description
Your environment
ruby -v
: ruby 3.2.2 (2023-03-30 revision e51014f9c0) [arm64-darwin22]rdbg -v
: rdbg 1.9.2
Describe the bug
After hitting a debugger
break point once, and using c
to move on, if you hit Enter
before the next break point, the next breakpoint is skipped.
To Reproduce
Script:
require "debug"; def my_method; 2.times { |i| p i; debugger; sleep 1 }; end
Without hitting Enter
:
1.mov
With hitting Enter
during the first sleep
:
2.mov
Expected behavior
The execution should stop at the next breakpoint regardless of what keystrokes are used between breakpoints.
Additional context
None.
Metadata
Metadata
Assignees
Labels
No labels